body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.login-box {
    background-color: #ffffff88;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(201, 196, 196, 0);
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.logo {
    max-width: 140px;
    margin-bottom: 32px;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1.2;
}

.input-group {
    margin-bottom: 24px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #495057;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    min-height: 48px;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

input::placeholder {
    color: #adb5bd;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 14px 45px 14px 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    min-height: 48px;
}

.password-wrapper input:focus {
    outline: none;
    border: 1px solid #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #adb5bd;
}

.forgot-password {
    display: block;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #4054B2;
    text-decoration: none;
    font-weight: 500;
}

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

.login-button {
    width: 100%;
    padding: 16px;
    background-color: #c8e1f8;
    border: none;
    border-radius: 8px;
    color: #1F3E60;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42857;
    font-family: Inter, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    min-height: 52px;
}

.login-button:hover {
    background-color: #b0d7f8;
}

.register-link {
    margin-top: 32px;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

.register-link a {
    color: #4054B2;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

.language-selector {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
}

.language-selector span {
    font-size: 14px;
    font-weight: 500;
}

.language-selector img {
    border-radius: 50%;
}

.language-selector svg {
    fill: #007bff;
}

.footer {
    margin-top: 48px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 12px;
}

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

.footer p {
    margin-top: 16px;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    body {
        padding: 8px;
    }
    
    .login-container {
        max-width: 98%;
        padding: 8px;
    }
    
    .login-box {
        padding: 32px 24px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
    
    input[type="email"],
    input[type="password"] {
        padding: 12px;
        font-size: 16px;
        min-height: 44px;
    }
    
    .password-wrapper input {
        padding: 12px 40px 12px 12px;
        min-height: 44px;
    }
    
    .login-button {
        padding: 14px;
        min-height: 48px;
    }
    
    .register-link {
        margin-top: 24px;
    }
    
    .language-selector {
        margin-top: 32px;
        padding: 10px 14px;
    }
    
    .footer {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .login-container {
        max-width: 99%;
        padding: 5px;
    }
    
    .login-box {
        padding: 24px 20px;
    }
    
    .logo {
        max-width: 120px;
        margin-bottom: 24px;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 24px;
    }
} 