﻿/* Reglas @font-face para Abnes */
@font-face {
    font-family: 'Abnes';
    src: url('../fonts/abnes.otf') format('opentype');
}

/* Reglas @font-face para GeneralSans */
@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('../fonts/GeneralSans-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}


/* LOGIN Container */
.login-container {
    max-width: 500px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* Fondo de Login */
.login-background {
    background-image: url("/images/loginbackground.jpg");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px) brightness(70%);
}

.link--reset-pw {
    color: #fff;
}

.link--reset-pw:hover {
    color: var(--bs-primary);
}

@keyframes titilar {
    0%, 100% {
        color: initial;
        border-color: initial;
    }

    50% {
        color: red;
        border-color: red;
    }
}

.titilar {
    animation: titilar 2s ease-in-out 2;
}