/*
 * Path: /public_html/login/styles/login-form.css
 * Version: 1.3.0
 * Date: 10/09/2026
 * Time: 12:10
 * Function: Ajuste de alinhamento vertical e espaçamento interno dos campos de entrada de texto e senha.
 */

.login-form-group,
.login-field {
    margin-bottom: 20px;
}

.login-field label,
.login-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nextalk-muted);
}

.login-field input,
.login-form-group input {
    width: 100%;
    height: 48px;
    padding: 0 44px 0 16px;
    background: var(--nextalk-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--nextalk-text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-field input:not([type="password"]),
.login-form-group input:not([type="password"]) {
    padding-right: 16px;
}

.login-field input:focus,
.login-form-group input:focus {
    border-color: var(--nextalk-cyan);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.15);
}

.login-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-password-wrapper input {
    padding-right: 48px;
}

.login-password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: none;
    border: none;
    color: var(--nextalk-muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.login-password-toggle:hover {
    color: var(--nextalk-text);
}

#login-submit,
button[type="submit"] {
    width: 100%;
    height: 48px;
    background: var(--nextalk-cyan);
    color: var(--nextalk-dark);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: filter 0.2s ease;
}

#login-submit:hover,
button[type="submit"]:hover {
    filter: brightness(1.1);
}

.login-divider {
    text-align: center;
    margin: 18px 0;
    color: var(--nextalk-muted);
    font-size: 13px;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-actions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.login-actions-footer a {
    color: var(--nextalk-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-actions-footer a:hover {
    color: var(--nextalk-text);
}

.login-actions-footer a.highlight {
    color: var(--nextalk-cyan);
    font-weight: 600;
}

.login-actions-footer a.highlight:hover {
    filter: brightness(1.1);
}