* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c6fbb 0%, #3a5296 100%);
    padding: 1rem;
}

/* Form Container Styling */
.form-container {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 3rem 3rem 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo i {
    font-size: 4rem;
    background: linear-gradient(135deg, #2c6fbb 0%, #3a5296 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo h1 {
    font-size: 2.6rem;
    margin-top: 0.7rem;
    color: #2c6fbb;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.account-form {
    width: 100%;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c6fbb;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #2c6fbb, #3a5296);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus {
    border-color: #2c6fbb;
    box-shadow: 0 0 0 3px rgba(44, 111, 187, 0.2);
    outline: none;
    background: #fff;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #2c6fbb;
}

.btn-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #2c6fbb 0%, #3a5296 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(44, 111, 187, 0.35);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer a {
    color: #2c6fbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.form-footer a:hover {
    color: #3a5296;
    text-decoration: underline;
}

.form-footer p {
    margin-top: 1.5rem;
    color: #555;
    font-size: 0.95rem;
}

.form-footer p a {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-container {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .logo i {
        font-size: 3rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input {
        font-size: 1rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 14px;
    }

    .form-footer a {
        font-size: 1rem;
    }
}
