@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: kalameh;
}

body {
    background: url("../img/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* AUTH START */

.auth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 10px;
    gap: 10px;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 600px;
    gap: 40px;
}

.form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dore-checkbox {
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

/* CHECKBOX START */
.checkbox-wrapper-16 *,
.checkbox-wrapper-16 *:after,
.checkbox-wrapper-16 *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-16 .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-title {
    border-color: #2260ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-title:before {
    transform: scale(1);
    opacity: 1;
    background-color: #2260ff;
    border-color: #2260ff;
    color: #fff;
    content: "✓";
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-title .checkbox-icon,
.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-title .checkbox-label {
    color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:focus+.checkbox-title {
    border-color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:focus+.checkbox-title:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    min-height: 7rem;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    cursor: pointer;
    position: relative;
}

.checkbox-wrapper-16 .checkbox-title:before {
    content: "";
    font-size: 12px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s ease;
}

.checkbox-wrapper-16 .checkbox-title:hover {
    border-color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-title:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-icon {
    transition: 0.5s ease;
    color: #494949;
    font-size: 40px;
}

.checkbox-wrapper-16 .checkbox-label {
    color: #707070;
    transition: 0.5s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.checkbox-wrapper-16 .checkbox-label span {
    font-size: 12px;
}

/* CHECKBOX END */

.form-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.inputs-name,
.inputs-school,
.inputs-question,
.inputs-sath {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.inputs-name input,
.inputs-school input,
.inputs-question select,
.inputs-question input,
.inputs-sath select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border-radius: 5px;
    border: 2px solid gray;
    transition: all .5s;
    text-align: right;
}

.inputs-name input:focus,
.inputs-school input:focus,
.inputs-question input:focus {
    border: 2px solid #2260ff;
}

.inputs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.inputs-btn input {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #2260ff;
    outline: none;
    cursor: pointer;
    transition: all .5s;
    border: 2px solid #2260ff;
    color: white;
    border-radius: 5px;
}

.inputs-btn input:hover {
    filter: grayscale(.1);
}

.copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    text-align: center;
    font-size: 16px;
}
.copyright #yoozserver{
    text-decoration: none;
    color: orangered;
}
.copyright #tajdesign{
    text-decoration: none;
    color: red;
}

/* AUTH END */






























/* RESPONSIVE START */

@media screen and (max-width:768px) {

    body {
        height: 100%;
    }

    form {
        width: 100%;
    }

    .form-title {
        font-size: 16px;
        text-align: center;
    }

    .dore-checkbox {
        display: grid;
        grid-template-columns: repeat(2, auto);
    }

    .inputs-name,
    .inputs-school,
    .inputs-question,
    .inputs-sath {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

}

/* RESPONSIVE END */