@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: #007BFF;
--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;
}

#top_nav a {
    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;
    width: 100%;
    background-color: var(--primary);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    padding: 0 1em;
    box-sizing: border-box;
}


body.error-page footer {
    background-color: var(--text); 
    color: var(--background);
}

main {
    min-height: calc(100vh - 35px - 60px);
    background-color: var(--background);
}

footer p#update_time {
    padding: 0 20px;
}


/* 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;
}

.wrapper{
    postiton: relative;
    width: 400px;
    background-color: rgba(225, 225, 225, 0.8)
    border: 2px solid rgba(225, 225, 225, 0.5)
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#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;
}







.input_box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #162939;
}

.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 input {
    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;




.remember-forgot {
    display: flex;
    color: #162939;
    font-size: 0.9em;
    font-weight: 500;
    justify-content: space-between;
    margin: 15px 0 15px 0;
}

#top.nav.remember-forgot a {
    color: #162939;
    text-decoration: none;
}

#top.nav.remember-forgot label input {
    color: #162939;
}



.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;
}


    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;
}







        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;
    }