<style>
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container-box {
    display: flex;
    width: 900px;
    max-width: 95%;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.left-box {
    flex: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/CollegeImage.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    min-height: 500px;
}


.left-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(209, 155, 42, 0.7), rgba(194, 141, 26, 0.4));
    opacity: 0.6;
}

.right-box {
    flex: 1;
    padding: 40px;
    background: #fff;
}

h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d19b2a;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #d19b2a;
    box-shadow: 0 0 0 3px rgba(209, 155, 42, 0.2);
    background-color: #fff;
}

.btn-login {
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, #d19b2a, #e6b94a);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 155, 42, 0.3);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(to right, #c28d1a, #d19b2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(209, 155, 42, 0.4);
}

.btn-login:active {
    transform: translateY(1px);
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 15px;
}

.remember-me label {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #d19b2a;
}

.forgot-password {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #d19b2a;
}

.sign-up {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.sign-up a {
    color: #d19b2a;
    font-weight: 600;
    text-decoration: none;
}

.sign-up a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container-box {
        flex-direction: column;
    }

    .left-box {
        min-height: 250px;
    }

    .right-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .right-box {
        padding: 25px 15px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .remember-me {
        flex-direction: column;
        align-items: flex-start;
    }

    .forgot-password {
        margin-top: 10px;
    }
}
</style>
