

.download-section {
    width: 100%;
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    color: #FF5E00;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.stores-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.store-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease both;
}

.store-card:nth-child(1) {
    animation-delay: 0.3s;
}

.store-card:nth-child(2) {
    animation-delay: 0.5s;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(135deg, #ff5e00 0%, #e35d0f 100%);;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.store-card:hover::before {
    transform: translateY(0);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.store-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.store-card:hover > * {
    color: white !important;
}

.store-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.store-card:nth-child(1) .store-icon {
    animation-delay: 0.1s;
}

.store-card:nth-child(2) .store-icon {
    animation-delay: 0.3s;
}

.store-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.store-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff5e00 0%, #e35d0f 100%);;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.feature-icon {
    color: #ff6b35;
    font-size: 1.3rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .stores-container {
        gap: 20px;
    }

    .store-card {
        width: 100%;
        max-width: 300px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}
.waseet-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    animation: fadeInUp 0.6s ease;
    border:1px solid #D9D9D9;
}

.waseet-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.waseet-form-title {
    font-size: clamp(20px,20vw,32px);
    color: #FF5E00;
    font-weight: bold;
    margin-bottom: 10px;
}

.waseet-form-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
                font-weight: 500;
                margin-top:15px !important;

}

.waseet-form-group {
    margin-bottom: 20px;
}

.waseet-form-label {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.waseet-form-label .required-star {
    color: #ff6b35;
}

.waseet-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: right;
}

.waseet-form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.waseet-form-input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.waseet-country-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: right;
    background: white;
    cursor: pointer;
}

.waseet-country-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.waseet-phone-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.waseet-phone-code {
    width: 80px;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    background: #f8f9fa;
}

.waseet-phone-code:focus {
    outline: none;
    border-color: #ff6b35;
}

.waseet-phone-input {
    flex: 1;
}

.waseet-password-wrapper {
    position: relative;
}

.waseet-password-toggle {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.waseet-password-toggle:hover {
    color: #ff6b35;
}

.waseet-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.waseet-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6b35;
}

.waseet-checkbox-label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.waseet-submit-btn {
    width: 100%;
    padding: 15px;
    background: #FF5E00;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.waseet-submit-btn:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.waseet-submit-btn:active {
    transform: translateY(0);
}

.waseet-login-link {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.waseet-login-link a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.waseet-login-link a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waseet-form-group {
    animation: fadeIn 0.5s ease both;
}

.waseet-form-group:nth-child(1) { animation-delay: 0.1s; }
.waseet-form-group:nth-child(2) { animation-delay: 0.15s; }
.waseet-form-group:nth-child(3) { animation-delay: 0.2s; }
.waseet-form-group:nth-child(4) { animation-delay: 0.25s; }
.waseet-form-group:nth-child(5) { animation-delay: 0.3s; }
.waseet-form-group:nth-child(6) { animation-delay: 0.35s; }
.waseet-form-group:nth-child(7) { animation-delay: 0.4s; }
.waseet-form-group:nth-child(8) { animation-delay: 0.45s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .waseet-form-wrapper {
        padding: 30px 20px;
    }

    .waseet-form-title {
        font-size: 20px;
    }

    .waseet-form-subtitle {
        font-size: 13px;
    }

    .waseet-phone-code {
        width: 70px;
    }
}
.iti {
width: 100%;
}

.iti__country-list {
z-index: 99999 !important;
}

.iti__country-list {
max-height: 220px;
overflow-y: auto;
}

.iti__selected-flag {
padding: 0 12px !important;
}


.intl-tel-input {
position: relative !important;
width: 100% !important;
}


.intl-tel-input {
width: 100% !important;
}

.iti__selected-flag {
padding: 0 30px !important;
}

.iti__country-list {
max-height: 250px;
overflow-y: auto;
z-index: 999999 !important;
width: 100% !important;  
left: 0 !important;         
}

@media (max-width: 576px) {
.iti__country-list {
width: 100% !important;
max-width: 100% !important;
left: 0 !important;
right: 0 !important;
}

.intl-tel-input {
width: 100% !important;
}

.iti--allow-dropdown input {
padding-left: 48px !important;
}
}
.material-icon-theme--google {
display: inline-block;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-size: 100% 100%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='none' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath fill='%23f44336' d='M7.209 1.061c.725-.081 1.154-.081 1.933 0a6.57 6.57 0 0 1 3.65 1.82a100 100 0 0 0-1.986 1.93q-1.876-1.59-4.188-.734q-1.696.78-2.362 2.528a78 78 0 0 1-2.148-1.658a.26.26 0 0 0-.16-.027q1.683-3.245 5.26-3.86' opacity='0.987' stroke-width='0.3' stroke='%23f44336'/%3E%3Cpath fill='%23ffc107' d='M1.946 4.92q.085-.013.161.027a78 78 0 0 0 2.148 1.658A7.6 7.6 0 0 0 4.04 7.99q.037.678.215 1.331L2 11.116Q.527 8.038 1.946 4.92' opacity='0.997' stroke-width='0.3' stroke='%23ffc107'/%3E%3Cpath fill='%23448aff' d='M12.685 13.29a26 26 0 0 0-2.202-1.74q1.15-.812 1.396-2.228H8.122V6.713q3.25-.027 6.497.055q.616 3.345-1.423 6.032a7 7 0 0 1-.51.49' opacity='0.999' stroke-width='0.3' stroke='%23448aff'/%3E%3Cpath fill='%2343a047' d='M4.255 9.322q1.23 3.057 4.51 2.854a3.94 3.94 0 0 0 1.718-.626q1.148.812 2.202 1.74a6.62 6.62 0 0 1-4.027 1.684a6.4 6.4 0 0 1-1.02 0Q3.82 14.524 2 11.116z' opacity='0.993' stroke-width='0.3' stroke='%2343a047'/%3E%3C/g%3E%3C/svg%3E");
}
.google-btn {
border: 1px solid #ddd;
border-radius: 6px;
padding: 10px;
text-align: center;
cursor: pointer;
font-size: 14px;
display: flex;
justify-content: center;
align-items: center;
gap: 6px;
background: #fff;
}

.separator {
display: flex;
align-items: center;
justify-content: center;
margin: 15px 0;
position: relative;
}

.separator::before,
.separator::after {
content: "";
flex: 1;
height: 1px;
background-color: #ddd;
}

.separator span {
margin: 0 12px;
color: #666;
font-size: 14px;
}
.forget{
display: block;
margin-top: 5px; 
text-align: left; 
font-size: 14px;
font-weight:600;
cursor: pointer;
color: #ff6b35;

}
/* الحاوية الأساسية */
.otp-page {
display: flex;
justify-content: center;
align-items: center;
padding: 60px 60px;
}

/* البوكس الأبيض */
.otp-box {
width: 100%;
max-width: 530px;
padding:0 20px 10px 20px;
border-radius: 15px;
text-align: left;
}

/* العنوان */
.otp-title {
font-size: 22px;
font-weight: bold;
color: #ff6600;
margin-bottom: 10px;
}

/* النص تحت العنوان */
.otp-subtitle {
color: #666;
font-size: 14px;
margin-bottom: 25px;
line-height: 1.6;
}

/* مربعات إدخال الرمز */
.otp-inputs {
display: flex;
justify-content: space-between;
gap: 8px;
margin-bottom: 25px;
}

.otp-inputs input {
width: 60px;
height: 60px;
border-radius: 8px;
border: 1px solid #ddd;
font-size: 20px;
text-align: center;
transition: 0.2s;
}

.otp-inputs input:focus {
border-color: #ff6600;
outline: none;
}

/* زر التحقق */
.otp-btn {
width: 100%;
padding: 12px;
background: #ff6600;
color: #fff;
font-size: 16px;
border: none;
border-radius: 8px;
margin-bottom: 15px;
cursor: pointer;
transition: 0.2s;
}

.otp-btn:hover {
background: #e95500;
}

/* إعادة الإرسال */
.otp-resend {
color: #444;
font-size: 14px;
}

.otp-resend a {
color: #ff6600;
font-weight: bold;
text-decoration: none;
}

/* رسبونسيف للشاشات الصغيرة */
@media (max-width: 400px) {
.otp-inputs input {
width: 38px;
height: 38px;
font-size: 18px;
}
}
.otp-box {
width: 100%;
text-align: center;
margin-top: 20px;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.check-icon {
    width: 100px;
    height: 100px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid #ff6600;
    border-radius: 50%;
    opacity: 0;
    animation: ripple 1s ease-out 0.7s;
}

@keyframes ripple {
    from {
        transform: scale(0.8);
        opacity: 1;
    }
    to {
        transform: scale(1.3);
        opacity: 0;
    }
}

.check-icon svg {
    width: 50px;
    height: 80px;
    stroke: white;
    stroke-width: 8;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.5s ease-out 0.5s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    color: #ff6600;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.btn-home {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    animation: fadeIn 0.6s ease-out 0.8s both;
    width: 100%;
}

.btn-home:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 102, 0, 0.4);
}

.btn-home:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 576px) {
    .success-card {
        padding: 40px 25px;
    }

    .check-icon {
        width: 80px;
        height: 80px;
    }

    .check-icon svg {
        width: 40px;
        height: 40px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 14px;
    }

    .btn-home {
        padding: 12px 40px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .success-card {
        padding: 30px 20px;
    }

    .check-icon {
        width: 70px;
        height: 70px;
    }

    .success-title {
        font-size: 22px;
    }
}