* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
}

.fondo {
    display: flex;
    height: 100%;
    background-image: url("index.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;

}

.login {
    padding-top: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.login button {
    width: 20vw;
    height: 10vh;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
}


/*https://getcssscan.com/css-buttons-examples*/
/* CSS */
.button-87 {
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-87:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.button-87:active {
    transform: scale(0.95);
}


dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-container {
    display: flex;
    flex-direction: column;
    padding: 25px;
    padding-bottom: 15px;
    font-family: Arial;
    font-size: 14px;
}


.form-container label {
    padding-top: 10px;
}

.form-container input {
    width: 100%;
    font-size: 18px;
}

.botones {
    display: flex;
    width: 100%;
    padding: 5px;
    margin-bottom: 0px;
}

.form-container button {
    padding: 5px;
    margin: 5px;
    width: 100%;
}

.bottom-label {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 3px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
  }