* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: linear-gradient(135deg, #D37D00 0%, #447C37 100%); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 850px;
    width: 100%;
    display: grid;
    grid-template-columns: 420px 430px; 
    animation: slideIn 0.6s ease-out;
    margin: 0 auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-form-section {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 18px;
}

.logo-container img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.login-header {
    text-align: center;
    margin-bottom: 10px;
}

.login-header p {
    color: #718096;
    font-size: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.buttonLoginAdministrativos{
    color: #fff !important;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-controls {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f7fafc;
    color: #2d3748;
    font-weight: 500;
}

.form-controls:focus {
    outline: none;
    border-color: #D37D00;
    background: white;
    box-shadow: 0 0 0 4px rgba(211, 125, 0, 0.1);
}

.form-controls:focus+.input-icon {
    color: #D37D00;
}

.form-controls::placeholder {
    color: #a0aec0;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.password-toggle:hover {
    color: #D37D00;
}

.btn-login {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    background: linear-gradient(135deg, #D37D00 0%, #447C37 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(211, 125, 0, 0.4);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-logn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 125, 0, 0.5);
}

.btn-login:active {
    transform: translateY(0);
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #D37D00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #b86900;
    text-decoration: underline;
}

.illustration-section {
    background: linear-gradient(135deg, #D37D00 0%, #447C37 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.illustration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.illustration-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.main-icon {
    font-size: 120px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.illustration-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.illustration-content p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    font-size: 14px;
    text-align: left;
}

@media (max-width: 968px) {
    .login-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .illustration-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .login-form-section {
        padding: 40px 30px;
    }

    .login-header h1 {
        font-size: 24px;
    }

    .logo-container img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .login-container {
        border-radius: 20px;
    }

    .login-form-section {
        padding: 30px 25px;
    }

    .login-header h1 {
        font-size: 22px;
    }

    .form-controls {
        padding: 13px 13px 13px 40px;
        font-size: 14px;
    }

    .btn-login {
        padding: 14px;
        font-size: 14px;
    }
}