/* assets/css/login.css */
body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.bg-login {
    background: radial-gradient(circle at top right, #1a1f26 0%, #0b0d10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 430px;
    padding: 15px;
}

.card-login {
    background-color: #111418;
    border-radius: 16px;
}

.tracking-wide {
    letter-spacing: 1.5px;
}

.tracking-wider {
    letter-spacing: 0.5px;
}

/* Customização dos Inputs Escuros */
.bg-dark-input {
    background-color: #1b1f24 !important;
    color: #ffffff !important;
}

.form-control:focus {
    box-shadow: none;
    background-color: #21262d !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: #4a5568;
    font-size: 0.9rem;
}

.input-group-text {
    font-size: 0.95rem;
}

.btn-dark-input {
    background-color: #1b1f24;
    transition: 0.2s;
}
.btn-dark-input:hover {
    background-color: #21262d;
    color: #ffffff !important;
}

/* Transições e Links */
.transition-link:hover {
    color: #ffda6a !important;
}

/* Validação Bootstrap Customizada */
.was-validated .form-control:invalid {
    border: 1px solid #dc3545 !important;
    background-color: #1b1f24 !important;
}
.was-validated .form-control:valid {
    border: 1px solid #198754 !important;
    background-color: #1b1f24 !important;
}