html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.row {
    flex: 1;
    display: flex;
}

p{
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f5f2f1;
    padding: 5px 0;
    text-align: center;
    z-index: 10000;
}

main {
    margin-top: 60px;
    padding: 20px;
}

.global-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    height: 100%;
}

footer{
    background-color: #f8f9fa;
    text-align: center;
    padding: .5rem 0;
    height: auto;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/*Cards*/
.card-title{
    font-weight:500;
    font-size: 2.5rem;
    color: rgb(25,150,225);
}

.card-subTitle{
    font-weight:500;
    font-size: 2.0rem;
    color: rgba(25,150,225,.5);
}

/*Bottons*/
.btn-pri {
    background-color: #007bff;
    color: #fff;
    width: auto;
    border: 2px solid #007bff;
    transition: background-color 0.3s, border-color 0.3s;
    font-weight: bold;
}

.btn-pri:hover {
    color:#007bff;
    background-color: #fff;
}

.btn-sec {
    color: #fff;
    width: auto;
    background-color: #7a7a7a;
    border-color: #7a7a7a;
    border: 2px solid #7a7a7a;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-sec:hover {
    color: #000;
    background-color: #d6d6d6;
}

.btn-tre {
    background-color: #0dcaf0;
    color: #fff;
    width: auto;
    border: 2px solid #0dcaf0;
    transition: background-color 0.3s, border-color 0.3s;
    font-weight: bold;
}

.btn-tre:hover {
    color:#0dcaf0;
    background-color: #fff;
    border: 2px solid #0dcaf0;
}
/*Forms*/
form{
    padding-top: 10px;
    font-size: 14px;
    margin-top: 30px;
}

.login-form{
    width:750px;
    margin:4rem;
}
.Reg-form{
    width:70%;
    margin:3rem;
}

.sign-up{
    text-align:center;
    padding:20px 0 0;
}

.alert{
    margin-bottom:-30px;
    font-size: 13px;
    margin-top:20px;
}

/*Imagenes*/
img{
    display:block;
}

.img-Fondo {
    background: linear-gradient(-90deg, wheat, transparent);
    background-image: url("static/assets/img/Designer.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/*Textos*/
.titulo{
    font-size: 2.5rem;
}
.txtPri{
    font-size: 2.5rem;
}

/*Efectos collapse*/
.contCollapsed {
    background-color: white;
    padding: 20px;
    transition: all 1.5s ease;
    height: auto;
}
.contCollapsed .titForm{
    color: #0d6efd;
    font-size: 1.5rem;
}

.slide-up {
    overflow: hidden;
    height: 500px;
    transition: height 2s ease, padding 1s ease, margin 1s ease;
}
.slide-up.collapsed {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.slide-up.collapsed .titForm{
    color: grey;
    font-size: 1.5rem;
}

.zoom {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
.transitionProd {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.form-check-input {
    transform: scale(1.5);
}
.active-btn {
    background-color: #0d6efd !important;
    color: #fff !important;
    opacity: 1;
}
.inactive-btn {
    opacity: 0.6;
}
.txtColor{
    color: #0d6efd;
}