﻿.FondoDeInicio {
    background-image: url('../../Imagenes/Login/FondoDelLogin.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
}
    .FondoDeInicio:before {
        content: '';
        width: 100%;
        height: 100%;
        background: linear-gradient(86deg, rgb(128, 128, 128) 0%);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.4;
        bottom: 0;
    }

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    font-weight: bold;
    text-decoration: underline;
    font-size: 14px;
}

button {
    border-radius: 8px;
    height: 45px;
    font-size: 17px;
    font-weight: bold;
    border: solid 2px rgba(221, 214, 214, 1);
}