@import url('fontiran.css');
*{
    margin: 0;
    padding: 0;
    font-family: 'IRANSansXFaNum';
}

.w-full{
    width: 100%;
}

/* .bg-parent{
    height: 100dvh;
    background-size: cover;
    background-position: center;
} */

.size-full{
    width: 100%;
    height: 100%;
}

.bg-blur{
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

form{
    width: 70%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); 
    border-radius: 4px;
    padding: 24px 32px 32px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    opacity: 0.7;
}

/* md: (768px and up) - 1/2 width */
@media (min-width: 768px) {
    form {
        width: 50%;
    }
}

/* xl: (1280px and up) - 1/3 width */
@media (min-width: 1280px) {
    form {
        width: 33.333333%;
    }
}

.logo-block{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

label{
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a5568;
    font-size:1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

input{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 91%;
    background-color: #f3f4f6;
    color: #4a5568;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    outline: none;
}

.w-auto{
    width: auto;
}

.pass-block{
    margin: 12px 0 24px;
}

button {
    width: 100%;
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #1d4ed8;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #1d4ed8;
}