@font-face {
    font-family: LocalCircularStd;
    src: url('/css/font/CircularStd-Book.otf'), url('/css/font/CircularStd-Book.woff');
}

* {
    padding:0; 
    margin:0; 
    box-sizing: border-box; 
    vertical-align: top;
    font-family: "LocalCircularStd", sans-serif;
}
*:before, *:after {
    box-sizing: border-box; 
}
body{
    background-color:#F5F8FC
}
/* scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #e0e2f3 #fff;
}
*::-webkit-scrollbar {
        width: 8px;
        height: 4px;
    }
*::-webkit-scrollbar-track, *::-moz-scrollbar-track *::-moz-scrollbar-thumb {
    border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #e0e2f3;
}

/* end scrollbar */
.app-container{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 70px 10px 50px 10px;
}
.item-container{
    display: flex;
    justify-content: center;
}
.center-item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    padding: 50px;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 498px;
    border-radius: 10px;
}
.card-header{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 141.667% */
    text-align: center;
    margin-bottom: 30px;
    color: #323232;
}
.sub-text{
    font-size: 15px;
    font-style: normal;
    font-weight: 450;
    line-height: 24px;
    color: #767695;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
}
.sub-text-highlight{
    color: #323232;
}
@media (max-width:520px) {
    .card{
        padding: 40px 30px;
    }
}
@media (max-width:485px) {
    .card{
        padding: 20px 20px;
    }
}

.secondary-btn{
    border-radius: 100px;
    background-color: #FF7F5C;
    color: #FFF;
    width: 100%;
    border: 0px;
    padding: 14px 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
}
.secondary-btn:focus-visible {
    outline: 1px solid #d85936;
}
@media (max-width:450px) {
    .secondary-btn{
        padding: 12px 15px;
        font-size: 13px;                
    }
}