@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

:root{
    --primary: #FF6347;
    --background: #FDFDFD;
    --text: #1A237E;
    --secondary_accent: #00BFA5;
    --highlight: #FF80AB;
}

header{
    display: flex;
    background-color: var(--primary);
    padding: 3px 20px;
    align-items: center;
    font-size: 20px;
    gap: 20px;
    color: var(--text);
    height: 60px;
}

#top_nav{
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

#top_nav a.top_nav_link{
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text);
}

.bi-person-circle{
    font-size: 40px;
}

#top_nav a.active {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    font-weight: bold;
    /* color: var(--secondary_accent); */
}

footer{
    position: fixed;
    bottom: 0;
    background-color: var(--primary);
    /* width: 100%; */
    left: 0;
    right: 0;
    height: 35px;
    color: var(--text);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main{
    min-height: calc(100vh - 35px - 60px);
    background-color: var(--background);
}

footer p#update_time, #social{
    padding: 0 20px;
    min-width: 260px;
}


/* ****************** LOGIN FORM ********************** */

#blanket{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.wrapper{
    position: relative;
    width: 400px;
    background-color: rgba(255,255,255,0.8);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

#frame{
    display: flex;
    width: 1200px;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-400px);
    transition: 0.5s;
}

#close_popup{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 45px;
    height: 45px;
    background-color: #141212;
    color: #FFFFFF;
    text-align: center;
    line-height: 45px;
    border-radius: 0 20px;
    z-index: 150;
    cursor: pointer;
}


.form_box{
    width: 400px;
    padding: 40px;
}

.form_box h2{
    text-align: center;
    color: #162939;
}

.form_box form{
    width: 320px;
}

.input_box{
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #162939;
    margin: 30px 0;
}

.input_box input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #162939;
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input_box label{
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 1em;
    color: #162939;
    font-weight: 500;
    pointer-events: none;
    transform: translateY(-50%);
    transition: 0.5s;
}

.input_box .icon{
    position: absolute;
    right: 4px;
    font-size: 1.2em;
    color: #162939;
    line-height: 60px;
}

.input_box input:focus~label, 
.input_box input:valid~label{
    top: -5px;
}

.remember-forgot{
    display: flex;
    color: #162939;
    font-size: 0.9em;
    font-weight: 500;
    justify-content: space-between;
    margin: 15px 0 15px 0;
}


.remember-forgot label input{
    color: #162939;
    margin-right: 5px;
}

.btn{
    width: 100%;
    height: 45px;
    background-color: #162939;
    color: white;
    cursor: pointer;
    font-style: 1em;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 6px;
}

.login-register{
    font-size: 0.9em;
    color: #162939;
    /* text-align: center; */
    font-weight: 500;
    margin: 25px 0 10px 0;
}