﻿.login-container {
    width: 420px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

.login-label {
    font-size: 12px;
    color: #333;
    margin-bottom: 3px;
    display: block;
    text-align: left;
}

.login-input {
    padding: 4px;
    border: none;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.login-links {
    font-size: 11px;
}

.btn-login {
    background-color: #184369;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.input-password {
    position: relative;
    width: fit-content;
}

    .input-password.full {
        width: 100%;
    }

    .input-password.login {
        width: 70%;
    }

    .input-password.fixed {
        width: fit-content;
    }

.password-input {
    width: 100%;
    padding: 10px 42px 10px 10px;
    border: 1px solid #cfd6e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .password-input:focus {
        outline: none;
        border-color: #4a78c2;
        box-shadow: 0 0 0 2px rgba(74,120,194,0.15);
    }

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    padding: 4px;
}

    .toggle-password:hover {
        color: #1f4fa3;
    }

.input-password.fixed .password-input {
    padding: 4px 30px 4px 6px;
    font-size: 11px;
    height: 22px;
    border-radius: 4px;
}

.input-password.fixed .toggle-password {
    right: 6px;
    font-size: 13px;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.password-input.large {
    padding: 10px 44px 10px 12px;
    font-size: 15px;
}

.titulo-modal {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: medium;
}
