﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 0px;
    font-weight: 300;
    font-size: 18px;
    overflow: hidden;
    height: 100vh;
}

*, html {
    margin: 0;
    padding: 0px;
}

.bg-gradiente {
    height: auto;
    background: rgb(141,160,252);
    background: linear-gradient(180deg, rgba(141,160,252,1) 0%, rgba(21,101,224,1) 80%);
}

.Informacion {
    font-size: 18px;
}

.contenedor {
    box-shadow: 0px -1px 50px 7px rgba(0,0,0,0.3);
    height: 100vh;
}

.titulo {
    border-bottom: 1px solid white;
    font-weight: 300;
    width: max-content;
}

.btn-registro, .btn-login {
    text-align: center;
    width: auto;
    transition: 0.5s;
}

.btn-registro {
    border-radius: 7px 0px 0px 7px;
    padding: 10px;
}

.btn-login {
    border-radius: 0px 7px 7px 0px;
    padding: 10px 15px;
}


    .btn-registro a, .btn-login a {
        text-decoration: none;
        color: white;
        font-size: 13px;
    }

.textbox, input[type="date" ], select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.5);
    color: rgba(255,255,255,.8);
    width: 95%;
    font-weight: 200;
    transition: 0.5s;
    padding: 0px 0 0 15px;
}

.cont-grande {
    height: 85vh;
}


input:focus-visible {
    outline: none;
    padding: 0;
    color: rgba(255,255,255,1);
}

select:focus-visible {
    color: rgb(21,101,224);
    padding: 0;
    outline: none;
}


.btn-check:focus + .btn-primary, .btn-primary:focus, .btn-check:focus + .btn, .btn:focus {
    border: none;
    box-shadow: none;
}



@media only screen and (max-width: 767.98px) {
    .contenedor {
        height: 100% !important;
    }

    body {
        overflow-y: auto;
        height: 100%;
    }

    .cont-grande {
        height: 80vh;
    }
}



@media only screen and (max-height: 430px) {

    body {
        overflow-y: auto;
        height: 100%;
    }

    .contenedor {
        height: 100% !important;
    }

    .cont-grande {
        height: 100% !important;
    }
}

.btn {
    box-shadow: 0px 9px 10px 0px #00000040;
}


.modal-backdrop {
    position: static;
}

.modal {
    background: rgba(0,0,0,0.5);
}

@media (max-width: 575.98px) {
    .textbox {
        width: 93%;
    }
}
