@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css");
body {
    font-family: 'Poppins', sans-serif;
    background: rgba(0,0,0,.04);
}

body.decuba {
    background: #252632;
}

.card {
    border-radius: 0;
    border: none;
    box-shadow: 5px 5px 0px rgba(225,225,225,0.5);
}

.decuba .card {
    box-shadow: 5px 5px 0px rgba(225,225,225,0.05);
}

h3 {
    font-weight: 800;
}

.card::after {
    content: '';
    width: 100%;
    bottom: 0px;
    height: 5px;
    background: -moz-linear-gradient(left, #da2050 0%, #f47525 40%, #f47525 60%, #da2050 100%);
    background: linear-gradient(to right, #da2050 0%, #f47525 40%, #f47525 60%, #da2050 100%);
    position: absolute;
}

.decuba .card::after {
    background: -moz-linear-gradient(left, #28a2a3 0%, #FF32A5 40%, #FF32A5 60%, #FFAE2D 100%);
    background: linear-gradient(to right, #28a2a3 0%, #FF32A5 40%, #FF32A5 60%, #FFAE2D 100%);
}

.card .card-body {
    padding: 30px;
}
.card .card-cover {
    background-image: url(../images/barman.png);
    background-size: cover;
    background-position: center center;
    min-height: 500px;
    height: 100%;
    padding: 50px;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,.5);
}

.card .form-control {
    border-radius: 0;
    box-shadow: 5px 5px 0px rgba(225,225,225,0.5);
}
.card .form-control:focus {
    border: thin solid #da2050;
}

.card .btn-gradient {
    background: -moz-linear-gradient(left, #da2050 0%, #f47525 40%, #f47525 60%, #da2050 100%);
    background: linear-gradient(to right, #da2050 0%, #f47525 40%, #f47525 60%, #da2050 100%);
    border-radius: 0;
    color: white;
    font-weight: bold;
    box-shadow: 5px 5px 0px rgba(225,225,225,0.5);
}

.decuba .card .btn-gradient {
    background: -moz-linear-gradient(left, #28a2a3 0%, #FF32A5 40%, #FF32A5 60%, #FFAE2D 100%);
    background: linear-gradient(to right, #28a2a3 0%, #FF32A5 40%, #FF32A5 60%, #FFAE2D 100%);
    font-weight: 800;
}

.forgotten-link {
    font-size: 13px;
}
.frosted-glass {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 5px;
}
.frosted-list {
    list-style-type: none;
    padding:0;
    margin:0;
}
.frosted-list > li {
    padding: 15px;
    border-bottom: thin solid rgba(0,0,0,0.1);
}
.frosted-list.slim > li {
    padding-left: 0px;
}
.frosted-list > li > i {
    margin-right: 15px;
}
.frosted-list > li:last-child {
    border-bottom: none;
}

.alert {
    border-radius: 0;
    padding: 10px;
    font-size: 13px;
    box-shadow: 5px 5px 0px rgba(225,225,225,0.5);
}

.alert > i {
    margin-right: 5px;
}

.disclaimer > p {
    font-size: 13px;
}

.decuba .disclaimer > p {
    color: white;
}

.btn.table-center {
    display: table;
    margin: 0 auto;
}
.divider {
    position:relative;
}
.divider > span {
    background: white;
    position: absolute;
    display: block;
    top: 7px;
    z-index: 999;
    left: 50%;
    padding: 0px 15px;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: bold;
}