* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

html, body {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    overflow: hidden; /* Remove completamente a barra de rolagem */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 380px;
    height: 100%;
    max-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 20px;
}

.language-selector {
    text-align: center;
    font-size: 12px;
    color: #90949c;
    padding-top: 5px;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin: -10px 0;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 32px;
    color: #1877f2;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.login-header h1 span {
    color: #42b72a;
}

.login-header p {
    font-size: 14px;
    color: #606770;
}

.input-group {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.disabled-field input {
    background-color: #eaedf0 !important;
    color: #8d949e !important;
    cursor: not-allowed;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.toggle-password {
    position: absolute;
    right: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 42px;
    font-size: 15px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    outline: none;
    background-color: #f5f6f7;
    color: #1d2129;
}

.input-wrapper input:focus {
    border-color: #1877f2;
    background-color: #ffffff;
}

.error-msg {
    font-size: 11px;
    color: #fa383e;
    margin-top: 2px;
    min-height: 12px;
    padding-left: 2px;
}

.btn-submit {
    width: 100%;
    background-color: #42b72a;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 4px;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #36a420;
}

.login-footer {
    text-align: center;
    padding-bottom: 5px;
}

.login-footer a {
    font-size: 14px;
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
}

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