input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.loader-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1000;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}

#dark-bg {
    width: 100%;
    height: 100%;
    z-index: 6;
    background-color: #000;
    opacity: 0.7;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
}

#signup-alarm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    display: none;
    justify-content: center;
    align-items: center;
}

#alarm-page {
    width: 500px;
    height: 350px;
    background-color: #fff;
    border: 3px solid #ec6381;
    border-radius: 20px;
    overflow: hidden;
}

#alarm-page h3 {
    text-align: center;
    font-family: yekan, sans-serif;
    font-size: 22px;
    font-weight: normal;
    padding: 10px;
    color: #fff;
    background-color: #ec6381;
    margin: 0 0 50px 0;
}

.signUp-message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}

#alarm-page p {
    text-align: center;
    font-family: yekan, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #48453f;
    margin: 0;
}

.tick-icon {
    background: url("../../images/tick.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    display: block;
}

.remove-icon {
    background: url("../../images/remove.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    display: block;
}

#alarm-page span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.tracking-text {
    width: 100%;
    text-align: center;
    font-family: yekan, sans-serif !important;
    font-size: 20px;
    color: #48453f;
    margin-top: 25px !important;
    font-weight: normal;
}

.signUp-btn {
    display: none;
}

#register {
    position: relative;
}

#register-title .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

#form-errors {
    display: none;
    color: #d94443;
    font-family: yekan,sans-serif;
    font-size: 16px;
    font-weight: bold;
    width: 1000px;
    border: 2px dashed #ccc;
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
}

#reg-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    user-select: none;
}

#reg-text h3 {
    direction: rtl;
    font-size: 35px;
    font-family: blabeloo;
    margin-top: 0;
    margin-bottom: 35px;
    margin-right: 0;
    text-align: center;
    color: #d94443;
}

#reg-text p {
    direction: rtl;
    font-size: 16px;
    width: 25vw;
    text-align: center;
    margin: 0;
    color: #67645a;
}

#reg-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    z-index: 2;
}

#reg-img img {
    justify-content: center;
    width: 600px;
    height: 350px;
    -webkit-user-drag: none;
}

#reg-bg {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#reg-bg-top {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-user-drag: none;
}

#reg-bg-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: #fff6e9;
}

#register-info {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

#reg-form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

#register-btn {
    color: #fff;
    width: 150px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: yekan,sans-serif;
    background-color: #00a600;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
}

#register-btn:hover {
    background-color: #00be00;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

#btn-submit-lg {
    color: #fff;
    width: 120px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: yekan,sans-serif;
    background-color: #00a600;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
}

#btn-submit-lg:hover {
    background-color: #00be00;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

#register-info .container {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    direction: rtl;
}

.container h3 {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    margin-right: 0;
    font-family: yekan;
    font-size: 22px;
    color: #d94443;
}

.container label {
    width: 490px;
    font-family: yekan;
    font-size: 16px;
    margin-right: 10px;
    color: #67645a;
    margin-top: 15px;
}

.container label .important-icon {
    background: url(../../images/star.png) no-repeat;
    background-size: 8px 8px;
    width: 10px;
    height: 10px;
    display: inline-block;
}

.container label input {
    width: 100%;
    font-size: 17px;
    font-family: yekan;
    border-radius: 5px;
    padding: 8px 15px;
    box-sizing: border-box;
    border: 3px solid #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    color: rgb(81, 79, 79);
}

.container label .error-massage {
    color: rgb(255, 0, 0);
    font-size: 15px;
    font-weight: bold;
    display: none;
    width: 310px;
}

.container .last-child {
    width: 990px;
}

.container label input:focus {
    border: 3px solid #f9b95e;
    color: rgb(81, 79, 79);

}

#tel-manzel {
    position: relative;
}

#tel-manzel input {
    direction: ltr;
}

.tel-code {
    position: absolute;
    left: -40px;
    top: 34px;
    font-size: 24px;
    font-family: yekan,sans-serif;
}

#reg-bg-bottom {
    display: flex;
    width: 100%;
    -webkit-user-drag: none;
    margin-bottom: 100px;
}

#jensiat {
    width: 100%;
    height: 53px;
    border: 3px solid #ccc;
    border-radius: 5px;
    font-family: yekan,sans-serif;
    font-size: 18px;
    color: #67645a;
    padding-right: 10px;
}


@media only screen and (max-width:1200px) {

    #reg-text h3 {
        font-size: 30px;
    }

    #reg-text p {
        font-size: 14px;
        width: 27vw;
    }

    #reg-img {
        margin-top: 60px;
    }

    #reg-img img {
        width: 450px;
        height: 300px;
    }

}

@media only screen and (max-width:992px) {

    #reg-text h3 {
        font-size: 28px;
    }

    #reg-text p {
        font-size: 14px;
        width: 32vw;
    }

    #reg-img {
        margin-top: 60px;
    }

    #reg-img img {
        width: 450px;
        height: 300px;
    }

    #register-info .container {
        width: 750px;
    }

    .container h3 {
        font-size: 16px;
    }

    .container label {
        width: 350px;
        font-size: 13px;
    }
    
    .container label span {
        background-size: 6px 6px;
        width: 8px;
        height: 8px;
    }
    
    .container label input {
        width: 100%;
        padding: 8px 15px;
        border: 3px solid #ccc;
        font-size: 12px;
    }
    
    .container .last-child {
        width: 710px;
    }

    .tel-code {
        left: -15px;
        top: 24px;
        font-size: 24px;
    }

    #jensiat {
        height: 44px;
        font-size: 12px;
    }

    .container label .error-massage {
        font-size: 12px;
        display: none;
        width: 250px;
    }
}

@media only screen and (max-width:768px) {

    #form-errors {
        display: none;
        font-size: 14px;
        font-weight: bold;
        width: 500px;
    }

    #register-title .container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    #reg-text {
        margin-top: 60px;
        z-index: 1;
    }

    #reg-text h3 {
        font-size: 25px;
    }

    #reg-text p {
        font-size: 14px;
        width: 48vw;
        margin: 0;
    }

    #reg-img {
        margin-top: 60px;
        z-index: 1;
    }

    #reg-img img {
        width: 450px;
        height: 300px;
    }

    #register-info .container {
        width: 550px;
        flex-direction: column;
        align-items: center;
    }

    .container h3 {
        font-size: 18px;
        text-align: center;
    }

    .container label {
        width: 400px;
        font-size: 14px;
    }
    
    .container label span {
        background-size: 6px 6px;
        width: 8px;
        height: 8px;
    }
    
    .container label input {
        width: 100%;
        padding: 8px 15px;
        border: 3px solid #ccc;
        font-size: 14px;
    }
    
    .container .last-child {
        width: 400px;
    }

    .tel-code {
        left: -12px;
        top: 27px;
        font-size: 24px;
    }

    .container label .error-massage {
        font-size: 12px;
        display: none;
        width: 250px;
        margin-bottom: 10px;
    }

    #alarm-page {
        width: 400px;
        height: 300px;
        background-color: #fff;
        border: 3px solid #ec6381;
        border-radius: 20px;
        overflow: hidden;
    }

    #alarm-page h3 {
        font-size: 21px;
    }

    #alarm-page p {
        font-size: 18px;
        color: #48453f;
        margin: 0;
    }

    #alarm-page .tick-icon {
        background-size: 100% 100%;
        width: 35px;
        height: 35px;
    }

    .remove-icon {
        background-size: 100% 100%;
        width: 35px;
        height: 35px;
    }

    #alarm-page span {
        margin-top: 30px;
    }

    #register-btn {
        width: 110px;
        height: 45px;
    }

    #btn-submit-lg {
        width: 90px;
        height: 45px;
        font-size: 14px;
    }

    .tracking-text {
        font-size: 18px;
        margin-bottom: 0;
        margin-top: 25px !important;
    }
}

@media only screen and (max-width:576px) {

    #form-errors {
        display: none;
        font-size: 11px;
        font-weight: bold;
        width: 250px;
    }

    #register .container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    #reg-text {
        margin-top: 40px;
        z-index: 1;
    }

    #reg-text h3 {
        font-size: 5vw;
    }

    #reg-text p {
        font-size: 12px;
        width: 58vw;
        margin: 0;
    }

    #reg-img {
        margin-top: 60px;
        z-index: 1;
    }

    #reg-img img {
        width: 300px;
        height: 170px;
    }

    #register-info .container {
        width: 300px;
        flex-direction: column;
        align-items: center;
    }

    .container h3 {
        font-size: 18px;
        text-align: center;
    }

    .container label {
        width: 250px;
        font-size: 13px;
    }
    
    .container label span {
        background-size: 6px 6px;
        width: 8px;
        height: 8px;
    }
    
    .container label input {
        width: 100%;
        padding: 5px 5px;
        border: 3px solid #ccc;
        font-size: 12px;
    }
    
    .container .last-child {
        width: 250px;
    }

    .tel-code {
        left: -12px;
        top: 24px;
        font-size: 20px;
    }

    #jensiat {
        height: 40px;
        font-size: 12px;
    }

    .container label .error-massage {
        font-size: 10px;
        display: none;
        width: 250px;
        margin-bottom: 10px;
    }

    #alarm-page {
        width: 250px;
        height: 200px;
        background-color: #fff;
        border: 3px solid #ec6381;
        border-radius: 20px;
        overflow: hidden;
    }

    #alarm-page h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 5px;
    }

    #alarm-page p {
        font-size: 14px;
        color: #48453f;
        margin: 0;
    }

    #alarm-page .tick-icon {
        background-size: 100% 100%;
        width: 25px;
        height: 25px;
    }

    .remove-icon {
        background-size: 100% 100%;
        width: 25px;
        height: 25px;
    }

    #alarm-page span {
        margin-top: 15px;
    }

    #register-btn {
        width: 100px;
        height: 50px;
        font-size: 13px;
    }

    #btn-submit-lg {
        width: 70px;
        height: 35px;
        font-size: 13px;
        margin-top: 10px;
    }

    .tracking-text {
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 15px !important;
    }
}