@font-face {
    font-family: 'regular';
    src: url(../font/Montserrat-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'bold';
    src: url(../font/Montserrat-SemiBold.ttf);
    font-display: swap;
}

body{
    /* background: url("../images/home.webp");     */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    height: 100vh;
    /* min-width: 400px; */
    overflow: hidden;

}

.title{
    color: #000 !important;
}

.logo{
    width: 60px;
    align-self: center;
    margin-top:30px;
}

.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;

}

.check-btn{
    background-color: transparent !important;
}




@keyframes pop-up {
    0% {
        transform: translateY(100%)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes pop-down {
    0% {
        transform: translateY(0)
    }
    100% {
        transform: translateY(100%)
    }
}

.popup{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);

    padding-bottom: 20px;
    
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    align-self: center;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;

    transform: translateY(0);
    transition: transform 1s ease; 

}

.up{
    animation: pop-up 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
}

.hide{
    animation: pop-down 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
}

.bm-arrow{
    margin: 30px auto;
    width: 160px;

    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    animation: pop-up 0.5s ease-in-out;

}

.bm-arrow:hover{
    cursor: pointer;
}

.popup .arrow{
    margin: 30px auto;
    margin-bottom: 10px;
    width: 30px;
}

.arrow:hover{
    cursor: pointer;
}

.popup .list{
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}

.popup .list .btn{
    margin: 10px 40px;
    padding: 0px 10px;

    background-color: white;
    height: 50px;
    border-radius: 25px;
    animation: pop-up 0.5s ease-in-out;
    font-size: 0.9em;
}

.or{
    margin: 20px 40px;
    align-self:center;
}

.popup .list .btn-check{
    background-color: transparent;
    border: 1px solid black;
    color: rgb(0, 0, 0);
}

.popup .list .btn-orange{
    background-color: rgb(255, 195, 112);
    border: 1px solid black;

}

.popup .list .btn-black{
    background-color: rgb(0, 0, 0);
    border: 1px solid black;
    color: white;
}

.popup .list .btn-black-outline{
    border: 1px solid black;
    background-color: transparent;
}

.g-signin2{
    align-self: center;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  
    margin-top: 0px;
    /* width:400px; */
}

.popup .list .btn-gray{
    background-color: rgb(208,210,214);
    color: rgb(107,106,103);
}

.form-line{
    box-sizing: content-box;
    width: auto;
    margin: 10px 40px;
    padding: 10px 20px;
    text-align: center;
    font-size:0.8em;
    font-family: 'regular';
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid black;
    /* padding-right: 30px; */
}

.custom-select {
    /* /width: 100%; */
    margin-left: 10px;
    margin-right: 40px;
    color: rgb(22, 22, 22);
    align-items: center; 
}

.custom-select::-ms-expand {
    display: none;
}

.custom-select::after {
    content: '\25BC'; /* Use a different Unicode character or an image for the arrow */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}


.form-line.help{
    box-sizing: content-box;
    width: 320px;
    margin: 10px 0px;
    padding: 10px 0px;
    text-align: center;
    font-size:14px;

    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid black;
    /* padding-right: 30px; */
}
.input-container {
    position: relative;
    display: inline-block;
    margin: 10px 40px;
}


.speak {
    position: absolute;
    top: 50%;
    right: 8px; 
    transform: translateY(-50%);
    width: 16px;
    height: auto; 
}

.form-line:focus{
    outline: none;
    box-shadow: none;
}



.login > *{
    font-weight: normal;
}

.tip{
    text-align: center;
    font-size: 0.75em;
    font-family: 'regular';
    margin: 10px 40px;
}

.dl{
    width: 240px;
    align-self: center;
    margin:10px;
    animation: pop-up 0.5s ease-in-out;

}

.moreImg{
    margin: 10px 40px;
    animation: pop-up 0.5s ease-in-out;
    width:300px;
    align-self: center;

}

.button-container{
    text-align: left; 
    margin: 10px 40px ;
}

.button-row {
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
}
.button-row1 {
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
}

.button-row button {
    flex: 1;
  }
  
  .button-row button:first-child {
    margin-right: 10px; 
  }
  
  .button-row button:last-child {
    margin-left: 10px; 
  }

.image-button {
    border: none; 
    background: none; 
    cursor: pointer; 
    padding:1px 0px;
}

.image-button.active{

    filter: brightness(70%); 
}

.image-button img {
    width: 100%;
    height: auto;
}

.small-title{
    margin:10px 0;
    font-size:12px;
}

.darker-button {
    filter: brightness(70%); 
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}


.popfaq {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(49, 49, 49);
    color:white;
    width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;

}

#closePopup:hover {
    color: rgb(255, 255, 255);
}

.popBtn {
    position: absolute;
    transform: translate(0, -20%);
    width:400px;
    align-self: center;
}


.btn-link {
    text-decoration: underline;
    font-size:0.8em;
    align-self: center;
    color: rgb(86, 86, 86); 
    cursor: pointer;
    display: block; 
    margin-bottom: 10px; 
}

.image-button {
    position: relative;
}

.button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size:0.7em;
    color:black;
}