* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    <!--background: linear-gradient(135deg, #1e4620 0%, #2e7d32 50%, #7cb342 100%);-->
    background: #0a0e27;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.circle1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2e7d32, #7cb342);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #7cb342, #aed581);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.circle3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2e7d32, #558b2f);
    top: 50%;
    right: -125px;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    padding: 25px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #f3faf3 0%, #f3faf3 50%, #f3faf3 100%);
    /*border-bottom: 1px solid rgba(30, 70, 32, 0.2);*/
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2e7d32, #7cb342);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
}

.logo-badge svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.brand-name h1 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #7cb342, #aed581);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.brand-name p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rc-badge {
    background: rgba(124, 179, 66, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(124, 179, 66, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: #7cb342;
}

.main-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.content-wrapper {
    display: flex;
    max-width: 1300px;
    width: 100%;
    gap: 80px;
    align-items: center;
}

.info-panel {
    flex: 1;
    padding: 40px;
}

.info-panel h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1e4620, #aed581);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-panel p {
    font-size: 18px;
    color: #1e4620;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #1e4620 0%, #2e7d32 50%, #7cb342 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.feature-item:hover{
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.3);
    transform: translateX(10px);
    color: #1e4620;
}

.feature-item:hover p{
    color: #1e4620;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2e7d32, #7cb342);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.login-card {
    flex: 0 0 580px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e4620;
}

.login-header p {
    color: rgba(30, 70, 32, 0.6);
    font-size: 14px;
}

.input-group {
    margin-bottom: 25px;
}

.form-row > .input-group {
    margin-bottom: 25px;
    width: 49%;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(30, 70, 32, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.5);
    border-radius: 12px;
    color: black;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.input-wrapper input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #7cb342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.input-wrapper select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.5);
    border-radius: 12px;
    color: black;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-wrapper select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #7cb342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.eye-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    opacity: 0.5;
    color: black;
    transition: opacity 0.3s ease;
}

.eye-toggle:hover {
    opacity: 1;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-me input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.remember-me label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.forgot-link {
    color: #7cb342;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #aed581;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2e7d32, #7cb342);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(30, 70, 32, 0.5);
}

.divider span {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 15px;
    color: rgba(30, 70, 32, 0.5);
    font-size: 13px;
    font-weight: bold;
}

.action-links {
    display: flex;
    gap: 15px;
}

.action-links a {
    flex: 1;
    text-align: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #7cb342;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.action-links a:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: #7cb342;
}

.footer {
    padding: 25px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #f3faf3 0%, #f3faf3 50%, #f3faf3 100%);
    /*border-top: 1px solid rgba(30, 70, 32, 0.2);*/
}

.footer p {
    color: rgba(30, 70, 32, 0.9);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: rgba(30, 70, 32, 0.9);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7cb342;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
}

@media (max-width: 1100px) {
    .content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .info-panel {
        text-align: center;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .login-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
    }

    .info-panel h2 {
        font-size: 36px;
    }

    .login-card {
        padding: 40px 30px;
    }

    .footer {
        padding: 20px 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row > .input-group {
        width: 100%;
    }
    .info-panel {
        /*order: 2;*/
        display: none;
    }
}