/* - Font - */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');

:root{
    --brand: #1c62b3;
    --sc: #a9c6df;
    --text: #051a31;
    --bg: #ebf0f5;
    --red: #FF0040;
    --green: #09AA5F;
    --trans: 0.2s ease;
}

body{
    direction: rtl;
    background: #ebf0f5;
    margin: 0;
    min-height: 1000px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    font-family: "Rubik", Arial;
    color: var(--text);
}

.ltr{
    direction: ltr;
}

::before,::after,*{
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,p{
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 25px 20px 0 20px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.sec{
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex: 1;
    gap: 20px;
    padding: 60px 40px 120px 40px;
}

.logo{
    height: 70px;
}

.btn{
    padding: 6px 9px;
    padding-inline-end: 14px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--bg);
    cursor: pointer;
    display: flex;
    gap: 7px;
}

.btn img{
    width: 25px;
    pointer-events: none;
}

.btn:not(:has(img)){
    padding: 8px 12px;
}

.gray-btn{
    background: var(--red);
}

.btn.disabled{
    pointer-events: none;
    opacity: 0.8;
}

.logout-btn{
    align-self: center;
}

.admin-btn{
    background: #555555;
}

input:focus,
input{
    border: none;
    border-radius: 50px;
    background: var(--sc);
    min-height: 30px;
    text-align: center;
    outline: none;
    font-size: 1rem;
    font-family: "Rubik", Arial;
    font-weight: 500;
    direction: ltr;
}

input::placeholder{
    color: rgba(0,0,0,0.3);
}


/* Noti */
.backdrop-con{
    position: fixed;
    z-index: 10;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(0,0,0,0.2);
    transition: var(--trans);
    opacity: 0;
    pointer-events: none;
    padding: 0 20px;
}

.noti{
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    gap: 20px;
    transition: var(--trans);
    opacity: 0;
    scale: 0.8;
}

.noti img{
    width: 100px;
    display: none;
}

.noti-wrong .noti-wrong-img{
    display: block;
}

.noti-done .noti-done-img{
    display: block;
}

.show-noti #noti-con{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 1;
    pointer-events: unset;
}

body.show-noti{
    pointer-events: none;
}

.show-noti .noti{
    opacity: 1;
    scale: 1;
}



@media (max-width:640px){
    .sec{
        padding: 40px 20px 80px 20px;
    }
}




