/* Estilos del formulario de inicio de sesión */
.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.login-container h2 {
    font-size: 24px;
    color: #4b04d7;
    margin-bottom: 20px;
}

.login-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.login-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.compibot-autofill-decoy {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.compibot-autofill-decoy input {
    margin: 0;
}

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.login-btn {
    background-color: #4b04d7;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.login-btn:hover {
    background-color: #28b566;
    transform: scale(1.05);
}

.register-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #4b04d7;
    border-radius: 50px;
    color: #4b04d7;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.register-btn:hover {
    background-color: #fff;
    border-color: #4b04d7;
    color: #4b04d7;
    transform: scale(1.05);
}

.register-btn:focus,
.register-btn:focus-visible,
.register-btn:active {
    background-color: #4b04d7;
    border-color: #4b04d7;
    color: #fff;
}
