@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --mainBg: #5B77FF;
    --secondBg: #F97B54;
    --mainColor: #333536;
    --bgGradient: linear-gradient(to left, #FF9B77, #F8774F);
    --bgGradientWebkit: -webkit-linear-gradient(to left, #FF9B77, #F8774F);
}


a {
    text-decoration: none;
}





::placeholder {
    opacity: .5;
    color: black;
    font-size: 14px;
}

:-ms-input-placeholder {
    opacity: .5;
    font-size: 14px;

    color: black;
}

::-ms-input-placeholder {
    opacity: .5;
    color: black;
    font-size: 14px;

}



body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 0px;
    /* background: var(--mainBg); */
    font-family: cairo;

    background: #f8f8f8;

}

form {
    border-radius: 0.75rem;
    background: white;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 20px;
    width: 40%;
    text-align: center;
}

label {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
}

fieldset {
    display: flex;
    flex-direction: column;
    border: 0px;
}


input,
select {
    border-width: 1px;
    border-style: none;
    margin-top: 0.5rem;

    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    appearance: none;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    width: 100%;


    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

    border: none !important;
}

input:focus{
    box-shadow: none !important;
}

.input_div {
    display: flex;
    align-items: center;
    --tw-bg-opacity: 1;
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.input_div i {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.svg-sm {
    height: 1.5rem;
    width: 1.5rem;
}

input,
select {
    outline: none;
    margin-top: 0px;
}

.logo {
    width: 200px;
    object-fit: contain;
    margin-bottom: 5px;
    margin-top: 10px;
}

button {

    padding: 10pt 5pt;
    width: 100%;
    border: none;
    border-radius: 4pt;
    cursor: pointer;
    outline: none !important;
    user-select: none;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-top: 15px;

    background-color: #31006f;

}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

p {
    margin-bottom: 8px;
}

.invalid {
    border: 2px solid red !important;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width:993px) {
    form {
        width: 90%;
    }
}








body {
    background-position: 250px;


}


.layer {
    width: 100%;
    height: 100%;
    position: fixed;
    background: var(--mainBg) !important;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: .95;
    padding: 10px;
    display: block !important;
}


.input_div {
    padding: 8px 20px;
}

input {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--mainColor);
    font-family: "cairo", sans-serif;
}

button {
    font-family: "cairo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: var(--bgGradient);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: .5s
}

button:hover {
    transform: scale(1.05, 1.05);
    transition: .5s
}

.logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}
