:root {
    --pradolux-blue: #26378D;
    --pradolux-light-blue: #3a4bb0;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.login-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../src/img/50anos.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Overlay removed as requested */

.login-page-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
}

.portal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.login-panel-wrapper {
    width: 400px;
    height: 100vh;
    background-color: var(--pradolux-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.img-logo-panel {
    width: 280px;
    margin-bottom: 2rem;
    align-self: center;
}

.form-label-custom {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.form-control-custom {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
}

.form-control-custom:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: none !important;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.input-group-text-custom {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 8px 0 0 8px !important;
}

.btn-login-custom {
    background-color: white !important;
    color: var(--pradolux-blue) !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 14px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    margin-top: 1rem;
}

.btn-login-custom:hover {
    background-color: #f0f1f4 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .login-page-container {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
    }

    .login-panel-wrapper {
        width: 100%;
        height: 100vh;
        padding: 30px;
    }
}