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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #1f3040;
    min-height: 100vh;
    color: #333;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 25px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    transition: all 0.4s ease;
}

.logo {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.logo-loca {
    color: #ffffff;
}

.logo-web {
    color: #e52b50;
}

.provider-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}

.provider-badge img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
}

.provider-badge span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 20px 40px;
}

.content-wrapper {
    display: flex;
    max-width: 750px;
    width: 100%;
}

.login-card {
    background: #ffffff;
    padding: 30px 35px;
    width: 380px;
    flex-shrink: 0;
}

.login-card h1 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
}

.form-group input:focus {
    border-bottom-color: #999;
}

.form-group input::placeholder {
    color: #999;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: #5fb4c9;
    font-size: 13px;
    cursor: pointer;
    padding: 10px 0;
}

.toggle-password:hover {
    color: #4a9eb3;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 12px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #5fb4c9;
}

.checkbox-wrapper label {
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.forgot-password {
    color: #5fb4c9;
    text-decoration: none;
    font-size: 13px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.recaptcha-container {
    margin-bottom: 20px;
}

.recaptcha-box {
    border: 1px solid #d5d5d5;
    background: #f7f7f7;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 2px;
}

.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recaptcha-checkbox input {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
}

.recaptcha-text {
    font-size: 13px;
    color: #555;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.recaptcha-icon svg {
    display: block;
}

.recaptcha-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-title {
    font-size: 9px;
    color: #555;
}

.recaptcha-terms {
    font-size: 7px;
    color: #888;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #e52b50;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 3px;
}

.btn-submit:hover {
    background: #d12548;
}

.sidebar {
    padding: 30px 25px;
    color: #e8e8e8;
    flex: 1;
}

.sidebar h2 {
    font-size: 18px;
    font-weight: 600;
    color: #e52b50;
    margin-bottom: 15px;
}

.sidebar-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.sidebar p {
    font-size: 13px;
    line-height: 1.6;
    color: #c8c8c8;
}

.sidebar strong {
    color: #e52b50;
}

.sidebar-link {
    color: #5fb4c9;
    text-decoration: underline;
}

.sidebar-link:hover {
    color: #7fcadc;
}

.footer {
    background: #243340;
    padding: 30px 40px;
    border-top: 1px solid #3a4a58;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-intro {
    display: flex;
    flex-direction: column;
    color: #888;
    font-size: 13px;
    min-width: 140px;
}

.footer-highlight {
    color: #a78bfa;
    font-size: 22px;
    font-weight: 600;
}

.footer-cards {
    display: flex;
    gap: 30px;
    flex: 1;
}

.footer-card {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #3a4a58;
}

.footer-card h3 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-card p {
    color: #999;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-card a {
    color: #5fb4c9;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .login-card {
        width: 100%;
    }
    
    .sidebar {
        padding: 25px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-card {
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid #3a4a58;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 25px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .header {
        padding: 20px;
    }
}