﻿html {
    height: 100%;
    min-height: 100%;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    font-family: Calibri;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 18px !important;
}
.layout::after{
    content: '';
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
}
.form-control, .form-select {
    border-radius: 0;
}
.content {
    margin: 50px auto;
    background-color: #fff;
    color: #000;
    padding: 30px;
    width: 500px;
    max-width: 500px;
    
}
.content-logo {
    height: 70px;
}
header {
    width: 100%;
    padding: 5rem;
    position: absolute;
    top: 0;
}
.logo {
    height: 70px;
}
.login-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 440px;
    max-width: 440px;
    min-width: 300px;
  
}
.login-card .card-body {
    padding: 40px 50px !important;
}
.success-check {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px;
    border-radius: 50%
}
.back-btn {
    color: black;
    transition: 0.3s step-end ease-in-out;
    text-decoration: none;
    font-size: 18px;
}
    .back-btn::after {
        color: #0d776e;
    }

@media(max-width: 768px){
    .second-logo {
        display:none;
    }
    .logo {
        height: 40px !important;
    }
}
@media(max-width: 500px) {
    .login-card {
        width: fit-content !important;
        max-width: 440px;
        min-width: auto !important;
    }
}