﻿@font-face {
    font-family: 'Noto'; /* Puedes darle el nombre que desees */
    src: url('/landing/font/NotoSerifDisplay_Condensed-Bold.ttf') format('truetype'); /* Ajusta la ruta y el formato según tu fuente */
}

@font-face {
    font-family: 'Parisienne'; /* Puedes darle el nombre que desees */
    src: url('/landing/font/Parisienne-Regular.ttf') format('truetype'); /* Ajusta la ruta y el formato según tu fuente */
}

@font-face {
    font-family: 'Poppins'; /* Puedes darle el nombre que desees */
    src: url('/landing/font/Poppins-Regular.ttf') format('truetype'); /* Ajusta la ruta y el formato según tu fuente */
}

@font-face {
    font-family: 'Shrikhand'; /* Puedes darle el nombre que desees */
    src: url('/landing/font/Shrikhand-Regular.ttf') format('truetype'); /* Ajusta la ruta y el formato según tu fuente */
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #181c1f;
}

a {
    text-decoration: none;
    color: white;
    padding: 10px;
}

ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
}

#loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

.spinner-container {
    text-align: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.form-control > input {
    border-radius: 0px 5px 5px 0px;
}

    .form-control > input :focus {
        border-radius: 0px 5px 5px 0px;
    }

.form-control:focus {
    border-color: #808080;
    border-radius: 0px 5px 5px 0px;
    box-shadow: none;
}

.login-form {
    padding: 15px;
}

.btn-primary {
    background-color: #181c1f;
    border: none;
}

    .btn-primary:hover {
        background-color: #181c1fd1;
    }

.btn:first-child:active {
    background-color: #181c1fd1;
}

.btn:disabled {
    background-color: #181c1fd1;
}
