@font-face {
    font-family: 'Tajwal';
    src: url('../fonts/Tajawal-Regular.ttf') format('woff2'),
        url('../fonts/Tajawal-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tajwal';
    src: url('../fonts/Tajawal-Bold.ttf') format('woff2'),
        url('../fonts/Tajawal-Bold.ttf') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* general */

.box-shadow1{
    box-shadow: #F9F5FF 0px 2px 8px 0px;
}

.bg1{
    background-color: #F9F5FF;
}

.br1{
    border-radius: 20px;
}

.p-10{
    padding: 10px;
}

.p-20{
    padding: 20px;
}

.h-100{
    height: 100%;
}

.mt-20{
    margin-top: 20px;
}

.color1{
    color: #611FAA;
}

.text-dec-none{
    text-decoration: none;
}

.text-r{
    text-align: right !important;
}

.color-red{
    color: red;
}

body {
    overflow-x: hidden;
    font-family: 'Tajwal';
}



.circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #611FAA;
    position: absolute;
    top: -2%;
    left: -1%;
    z-index: -1;
}

.rounded-image {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (max-width: 1000px) {
    .avatar {
        width: 200px;
    }
}

.button-submit {
    display: block;
    margin: auto;
    margin-top: 30px;
    border: none;
    padding: 10px;
    width: 124px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(80, 56, 237, 1) 0%, rgba(145, 129, 244, 1) 100%, rgba(80, 56, 237, 1) 100%);
    color: white;
    box-shadow: #F9F5FF 0px 2px 8px 0px;
    border-radius: 20px;
}

.button-google {
    display: block;
    margin: auto;
    margin-top: 30px;
    height: 52px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #E6D4FF;
    color: black;
    background-color: transparent;
    cursor: pointer;
}

.button-google svg {
    height: 24px;
    margin-right: 10px;
}

.button-facebook {
    display: block;
    margin: auto;
    margin-top: 30px;
    height: 52px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #E6D4FF;
    color: black;
    background-color: transparent;
    cursor: pointer;
}

.button-facebook svg {
    height: 24px;
    margin-right: 10px;
}

.inputForm {
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: 0.2s ease-in-out;
    direction: rtl;
    background-color: #F1E8FF;
    margin-top: 30px;
}

.input {
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    background-color: #F1E8FF;
    padding: 10px;

}

.input:focus {
    outline: none;
    border: none;
}


.field-validation-error {
    font-size: 14px !important;
}
@media (max-width: 575px) {
    .small {
        height: 100vh;
    }

    .inputForm {
        margin-top: 20px !important;
    }

    .button-submit {
        margin-top: 20px !important;
    }


}

@media (max-width: 767px) {

    .inputForm {
        margin-top: 10px;
    }

    .button-submit {
        margin-top: 10px;
    }

}
.notification-success,
.notification-error {
    position: fixed;
    top: 20px;
    left: 50%;
    font-size: 16px;
    transform: translateX(-50%);
    padding: 20px 30px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10000; /* Ensure this is above all other elements */
}

.notification-success {
    background-color: #63e69d5e;
    color: black;
}

.notification-error {
    background-color: #FFC1C1;
    color: black;
}


.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #611FAA;
    font-weight: 500;
    cursor: pointer;
}

.select {
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    background-color: #F1E8FF;

}