@font-face {
    font-family: 'fuente1';
    src: url('/fuentes/Kanit/Kanit-Regular.ttf'),
         url('/fuentes/Libre_Baskerville/LibreBaskerville-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: fuente1;
    margin: 0;
    padding: 0;
    background: url('/img/fondo.jpeg')no-repeat center center fixed;
    background-size: cover;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400; 
    font-style: normal;
}
 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
}

.logo img{
    width: 70px;
    margin-left: 50px;
}

.navbar .logo {
    color: white;
    font-size: 24px;
}

.navbar nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar nav ul li {
    display: inline;
    margin: 0 10px;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    border: none;
    background: none;
    cursor: pointer;
}

.navbar nav ul li button {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 35px;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: black;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: rgba(87, 61, 104, 0.8);
    margin: 12% auto;
    padding: 32px;
    border: 1px solid #eeeeee;
    width: 380px;
    position: relative;
    border-radius: 10px;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

form h1 {
    margin-top: 0;
    font-size: 29px;
    color: black;
}

form p {
    color: #ffffff;
}

form label {
    display: block;
    margin: 10px 0 5px;
    color: #ffffff;
}

form input[type="email"], form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="checkbox"] {
    margin-right: 5px;
}

form .forgot-password {
    display: block;
    margin: 10px 0;
    color: rgb(25, 187, 173);
    text-decoration: none;
}

form .registro {
    display: block;
    margin: 10px 0;
    color: rgb(25, 187, 173);
    text-decoration: none;
}

form .login {
    width: 70%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.973);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form .login:hover {
    background-color: rgb(194, 213, 214);
}

form .login a{
    color: #eeeeee;
    padding: 15px;
}

form .login a:hover{
    color: #000000;
    padding: auto;
}