html {
  scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;

}



body {
    background-color: #F0F0F1 !important;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card.welcome-card{
    max-width: 75rem;
    width: 100%;
    min-height: 50rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
}
.welcome-image {
    height: 34.813rem;
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    width: 100%;
}
@media (max-width: 992px) {
    .welcome-image {
        min-height: 20rem;
    }
}

@media (max-width: 768px) {
    .welcome-image {
        min-height: 14rem;
        height: auto;
    }
}

@media (max-width: 576px) {
    .welcome-image {
        min-height: 12rem;
    }
}

.welcome-logo{
    height: 2.5rem !important;
    width: 14rem !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;

}
.welcome-title{
    font-size: 3rem;
    font-weight: 600;
    color: #101010;
    letter-spacing: -0.04em;
    margin: 1.875rem 0 0rem 0;
    line-height: 4.5rem;
}
.detail-text{
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: #555555;
    font-size: 1.5rem;
}
.loginform{
    max-width: 21rem !important;
    width: 100%!important;
    padding: 1.125rem 2rem !important;
    border-radius: 2rem !important;
}

.card.login-card{
    border: none;
}

.user-login{
    padding: 1rem !important;
    border-radius: 0.5rem !important;
    height: 4rem !important;
}
.form-control.user-login:focus{
    box-shadow: none;
    border: 0.2px solid #0166ff;
}
.login-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #0166ff;
    color: #F0F0F1;
    gap: 1.5rem;
    border: none;
    font-size: 1.5rem;
}

