* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: white;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

.login-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 100px;
    background: white;
}

.login-left h1 {
    font-weight: 700;
    font-size: 5.5rem;
    color: #003D5C;
    margin-bottom: 80px;
    text-align: left;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.login-left img {
    max-width: 320px;
    height: auto;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(to bottom right, #C4CF4B 0%, #8FC476 20%, #5BC4B4 45%, #049BC4 70%, #012F55 100%);
}

.login-form-box {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 55px 50px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 35px;
}

.mobile-logo img {
    max-width: 200px;
    height: auto;
}

.login-form-box .form-label {
    color: #003D5C;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
}

.login-form-box .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.login-form-box .form-control:focus {
    background: white;
    box-shadow: 0 4px 16px rgba(1, 47, 85, 0.12);
    outline: none;
    border-color: rgba(4, 155, 196, 0.4);
}

.fv-row {
    margin-bottom: 26px;
}

.forgot-password {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 30px;
}

.forgot-password a {
    color: #003D5C;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #049BC4;
}

.btn-signin {
    background: #049BC4;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 17px;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(4, 155, 196, 0.35);
}

.btn-signin:hover {
    background: #037a9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 155, 196, 0.5);
}

.btn-signin:active {
    transform: translateY(0);
}

.position-relative .btn-icon {
    background: transparent;
    border: none;
    padding: 0;
}

.position-relative .btn-icon i {
    color: #003D5C;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .login-left {
        padding: 60px 70px;
    }

    .login-left h1 {
        font-size: 4.5rem;
    }

    .login-right {
        padding: 50px;
    }
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: row;
        background: linear-gradient(to bottom right, #C4CF4B 0%, #8FC476 20%, #5BC4B4 45%, #049BC4 70%, #012F55 100%);
    }

    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
        min-height: 100vh;
        padding: 40px 30px;
        background: transparent;
    }

    .login-form-box {
        padding: 45px 40px;
        max-width: 500px;
    }

    .mobile-logo {
        display: block;
    }
}

@media (max-width: 600px) {
    .login-right {
        padding: 30px 20px;
    }

    .login-form-box {
        padding: 40px 32px;
    }

    .mobile-logo img {
        max-width: 180px;
    }
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
