/* Container for the form */
.auth-container {
    max-width: 400px;
    margin: 50px auto 60px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form layout */
.auth-form {
    display: flex;
    flex-direction: column;
}

/* Labels */
.auth-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 15px;
    margin-bottom: 6px;
    font-size: 1rem;
}

/* Inputs styling */
.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus on inputs */
.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="email"]:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 6px rgba(52, 152, 219, 0.4);
}

/* Submit button */
.auth-form button.btn-primary {
    margin-top: 30px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    background: linear-gradient(90deg, #3498db, #2b7bc0);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 205, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Button hover effect */
.auth-form button.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(60, 128, 231, 0.5);
}

/* Paragraph below form */
.auth-container p {
    text-align: center;
    margin-top: 20px;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Link inside paragraph */
.auth-container p a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Link hover */
.auth-container p a:hover {
    text-decoration: underline;
    color: #216db4;
}
