
/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #000000; 
    --light-color: #ffffff;
    --default-text-color: #667085;
}
*{
    box-sizing: border-box;
}
h1,.h1{
    font-size:30px;
    font-weight: 600;
    color: var(--primary-color);
}
.extra-large-font{
    font-size: 60px;
}
body{
    padding:0px;
    margin: 0px;
    box-sizing: border-box;
    font-size:16px;
    font-family: 'Inter';
    color: var(--default-text-color);
   
}
p,::placeholder{
    color:#667085;
}
a{
    color:#50ABCB;
    text-decoration: none;
}
label{
    color: var(--primary-color);
    width:100%;
    display: block;
    font-size: 14px;
    padding-bottom: 5px;
    margin-top:10px;
}
input{
    width: 100%;
    padding:12px 15px;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    font-family: inherit;
}
.btn{
    font-weight: normal;
    cursor: pointer;
    padding: 12px 15px;
    text-align: center; 
    border: 1px solid;
    border-radius: 4px;
    font-size: 16px;
}
.btn-dark{
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.btn-light{
    background-color: transparent;
    color: var(--primary-color);
    border-color: #D0D5DD;
}
/* Header */
header{
    background: var(--primary-color);
    padding: 1.5rem 1rem;
}
/* Footer */
footer{
    text-align: center;
    font-size: 14px;
}
footer a{
    font-weight: bold;
    color: #667085;
    text-decoration: underline;
}

.terms-wrapper {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Form */
.form-wrapper{
    padding: 5rem 1rem;
    width: 380px;
    max-width: 100%;
    margin: auto;
}
.form-wrapper h1{
    margin-bottom: 0px;
    margin-top: 15px;
}
.form-wrapper .btn{
    width:100%;
}
.form-info,.from-logo,.form-logo{
    text-align: center;
}
.tpp-form{
    margin-top:2rem;
}
.tpp-form .remember{
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.tpp-form .remember > label{
    width: max-content;
    display: flex;
    margin-top:0px;
    align-items: center;
}
.tpp-form .field{
    position: relative;
    margin-bottom: 15px;
}
.tpp-form .field .view {
    cursor: pointer;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}
.tpp-form .remember > label > *{
    width: max-content;
    margin-right: 8px;
}

.back-to-login .btn{
    width:100%;
    display: block;
    margin-top: 1rem;
}
/* Social Login Button */
.social-login .btn{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    margin-top: 1rem;
}
.social-login .btn img{
    margin-right: 10px;
}

/* form Footer */
.sign-up-wrapper {
    text-align: center;
    font-size: 14px;
    margin-top: 2rem;
}



/* 401 page */
.main-wrapper > .container {
    padding: 5rem;
    min-height: calc(70vh);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 20px;
}
.main-wrapper > .container a:not(.btn){
    font-weight: bold;
}
.main-wrapper > .container .extra-large-font{
    margin-top: 1rem;
    margin-bottom: 1.1rem;
}
.main-wrapper > .container .buttons{
    margin-top: 3rem;
}

a.btn.btn-light.back-icon:before {
    content: '\2190';
    font-size: 30px;
    font-family: monospace;
    vertical-align: middle;
    line-height: 18px;
    padding-right: 10px;
    vertical-align: top;

}
/* Responsiveness */
@media all and (max-width:767px){
    .form-wrapper{
       padding: 3rem 1rem;
    }
    .main-wrapper > .container{
        font-size: 18px;
        padding: 4rem 1rem;
        min-height: unset;
    }
    .extra-large-font{
        font-size:36px;
    }
    .main-wrapper > .container .buttons{
        margin-top: 2rem;
        display:flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .buttons .btn{
        width:100%;
        display:block;
        margin-top: 1rem;
    }
}