﻿.login-form-container {
    max-width: 500px;
    margin: 0 auto;
    height: 503px;
}

.links,
a {
    font-size: 0.85rem;
    color: #00bfa5;
    margin-top: -5px;
}

/*Bottones*/
.btn-group-custom {
    display: flex;
    gap: 10px;
    justify-content: center;
    min-width: 120px;
}

/*Button Login */
.login-btn {
    background-color: #00bfa5;
    color: white;
}

.login-btn:hover {
        background-color: #009c88;
        color: white !important;
}

    .login-btn:active {
        background-color: #009c88 !important;
        color: white !important;
    }

 .login-btn:focus,
 .login-btn:focus-visible {
        outline: none !important;
        box-shadow: none !important;
        border-color: white !important;
    }

/*Button Registar*/
.register-Btn {
    background-color: #f1c40f;
    color: white;
    border: none;
    padding: 0.375rem 1.5rem;
    margin-top: -1px;
    font-size: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    height: 38px;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .register-Btn:hover {
        background-color: #d4ac0d;
        color: white !important;
        border-color: var(--third-color);
    }

    .register-Btn:active {
        background-color: #d9a600 !important;
        color: white !important;
    }

    .register-Btn:focus,
    .register-Btn:focus-visible {
        outline: none !important;
        box-shadow: none !important;
        border-color: white !important;
    }