﻿.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: white;
}

.portal-title {
    font-weight: bold;
    color: #141B4D;
    font-size: 16pt;
    margin-bottom: 1rem;
}

.login-card {
    padding: 2rem;
    border-radius: 12px;
    background: white;
}

.login-title {
    font-weight: bold;
    color: #141B4D;
}

.login-button {
    padding: 0px 0px !important;
    width: 100%;
    height: 35px;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(20 27 77 / var(--tw-bg-opacity)) !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}
.login-button:hover {
    background-color: rgb(30 37 97 / var(--tw-bg-opacity)) !important; /* Color más claro al hacer hover */
    transform: scale(1.1); /* Aumenta ligeramente el tamaño del botón */
}

.login-button:disabled {
    cursor: not-allowed !important; /* Cambia el cursor a "no permitido" */
    opacity: 0.4; /* Reduce la opacidad para indicar que está deshabilitado */
}

.inner-Text {   
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password {
    color: #141B4D;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }
