/* Custom login clean & minimal */

.login-page {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fefefe;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.07);
    padding: 30px 35px;
}

.login-logo a {
    font-weight: 700 !important;
    font-size: 2rem !important;
    color: #222 !important;
    text-shadow: none;
    margin-bottom: 25px;
    display: block;
    text-align: center;
}

.input-group-text {
    background-color: #e2e8f0;
    border: none;
    color: #4a5568;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #cbd5e0;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3182ce;
    box-shadow: 0 0 5px rgba(49, 130, 206, 0.5);
}

.custom-login-btn {
    background-color: #3182ce;
    border-color: #3182ce;
    font-weight: 600;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 999px; /* borda totalmente arredondada estilo pill */
    box-shadow: 0 2px 6px rgba(49, 130, 206, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 140px;
}

.custom-login-btn:hover,
.custom-login-btn:focus {
    background-color: #2c5282;
    border-color: #2c5282;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
}


.icheck-primary input[type="checkbox"]:checked + label::before {
    background-color: #3182ce;
    border-color: #3182ce;
}

.icheck-primary label {
    font-weight: 600;
    color: #2d3748;
}

.invalid-feedback {
    font-size: 0.85rem;
    color: #e53e3e;
    font-weight: 600;
}

.row {
    margin-top: 18px;
}
/* Arredondar o botão de login */
.btn-custom-rounded {
    border-radius: 20px !important;
    padding: 6px 12px;
    font-weight: 600;
}

