:root {
    --primary: #FF6B35;
    --primary-dark: #e85d2a;
    --secondary: #2D3748;
    --text-body: #718096;
    --light-bg: #F8F9FA;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    height: 100vh;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Left Side - Form */
.login-left {
    width: 45%;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
    z-index: 10;
}

/* Right Side - Illustration */
.login-right {
    width: 55%;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem;
}

/* Decorative circle behind illustration */
.login-right::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.logo-container img {
    height: 45px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: var(--text-body);
    margin-bottom: 3rem;
}

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

.form-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    height: 55px;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #FDFDFD;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s;
    color: var(--secondary);
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #CBD5E0;
}

.btn-primary {
    background: var(--primary);
    border: none;
    height: 55px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    margin-top: 1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-body);
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #CBD5E0;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.custom-checkbox input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.custom-checkbox input:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-size: 10px;
}

.forgot-link {
    color: #FF6B35;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.forgot-link:hover {
    opacity: 1;
    text-decoration: none;
}

.register-text {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.register-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.illustration-img {
    max-width: 80%;
    max-height: 60vh;
    position: relative;
    z-index: 1;
}

.tip-card {
    position: absolute;
    top: 40px;
    right: 40px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 15px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .login-left {
        width: 100%;
        padding: 3rem;
    }

    .login-right {
        display: none;
    }

    body {
        overflow: auto;
        height: auto;
    }
}