html, body {
    font-family: Arial, sans-serif;
}

.logo{
    text-align:center;
}
.logo-img{
    text-align:center;
    height:70px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.auth-form h1{
    text-align: center;
    color: #1e3c72;
    margin: 0 0 0.7em 0;
}
.auth-form label {
    font-size: 1.1em;
    color: #1a3c6e;
    font-weight: 600;
}
.auth-form input[type="text"],
.auth-form input[type="password"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}
.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
.auth-form button {
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #00c4ff);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.auth-form button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #0056b3, #0099cc);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.auth-form a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}
.auth-form a:hover {
    color: #0055aa;
    text-decoration: underline;
}

.error-message{
    color:red;
    text-align: center;
    font-weight:bold;
}