* {
    font-family: 'Shabnam';
}

body {
    background-color: rgb(28, 15, 41);
    margin: 0;
    padding: 0;
    height: auto;
}


  

.alert {
    display: none;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.section {
    width: 93%;
    background-color: rgb(255, 255, 255);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-bottom: 9px;
    box-sizing: border-box;
}

.sec1 {
    width: 100%;
    height: 320px;
    background-color: rgb(241, 241, 241);
    border-radius: 22px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-sizing: border-box;
}

.a1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 35px;
}

.logo {
    width: 100px;
    height: 115px;
}

.a2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.text {
    color: rgb(51, 51, 51);
    font-size: 22px;
}

.text2 {
    color: rgb(51, 51, 51);
    font-size: 22px;
    font-weight: 600;
}

.m {
    margin-top: 40px;
}

.logo3 {
    width: 90px;
    height: 100px;
}


.m2 {
    margin-top: 25px;
}


.aaa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec2 {
    direction: rtl;
    width: 90%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    box-sizing: border-box;

}

.label {
    direction: rtl;
    display: flex;
    align-items: start;
    justify-content: start;
}

.sec3 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 330px;
    margin-top: 30px;
    gap: 25px;
    box-sizing: border-box;

}

.inputdiv1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

.d {
    display: flex;
    align-items: center;
    justify-content: start;
    direction: rtl;
    width: 68%;

}

.inn {
    border-radius: 22px;
    direction: rtl;
    font-size: 18px;
    width: 70%;
    height: 35px;
    outline: 0;
    border: 1px solid #ccc;
    padding-inline-start: 10px;
}

.inn:focus {
    outline: 1px solid rgba(0, 136, 221, 0.75);
    box-shadow: 0 0 3px 1px rgba(5, 153, 246, 0.75); 
    transition: box-shadow 0.2s ease-in-out; 
}

.butt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.button {
    width: 73%;
    border-radius: 22px;
    height: 34px;
    background-color: rgb(51, 122, 183);
    border: 0;
    color: #fff;
    font-size: 17px;
}

form {
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 0;
}

.aaa {
    margin-top: 9px;
}


.error-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Shabnam', sans-serif;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    display: none; 
    z-index: 9999; 
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}