/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 07-01-2022, 12:42:34
    Author     : 168013590
*/

.pantallaNegra{
    background: rgba(48,48,48,0.5);
    position: fixed;
    top: 0;
    left : 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    
}

.pantallaNegra2{
    background: rgba(48,48,48,0.5);
    position: fixed;
    top: 0;
    left : 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
}

.claseVentana{
    padding-top:  15px;
    padding-left: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
    transform: scale(0.3);
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
    height: 400px;
    width:550px;
    display: block;
    overflow: auto;
}

.claseVentana2{
    padding-top:  15px;
    padding-left: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
    transform: scale(0.3);
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
    height: 650px;
    width:550px;
    display: block;
    overflow: auto;
}

.pantallaNegra.show{
    visibility: visible;
    opacity: 1;
}

.pantallaNegra2.show{
    visibility: visible;
    opacity: 1;
}

.claseVentana.show{
    transition: all 0.6s ease;
    transform: scale(1);
    opacity: 1; 
}

.claseVentana2.show{
    transition: all 0.6s ease;
    transform: scale(1);
    opacity: 1; 
}

.claseAutentica{
    padding-top:  15px;
    padding-left: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
    transform: scale(0.3);
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
    height: 200px;
    width: 800px;
    display: block;
}

.claseAutentica.show{
    transition: all 0.6s ease;
    transform: scale(1);
    opacity: 1; 
}

