:root {
    --primary-color: #021526;
    --secondary-color: #007EFF;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #021526;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --normul: #6EACDA;
}

.body {

    background-color: #f5f7fa;
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: -130px 0;
    padding: 120px 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-container {

    width: 100%;
    max-width: 400px;
    padding: 10px;
}

.login-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
}

.login-box:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.login-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.login-header::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

.login-header img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.login-header h1 {
    font-size: 18px;
    margin-bottom: 4px;
}

.login-header p {
    font-size: 12px;
    opacity: 0.9;
}

.login-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input ,select {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 14px;
    transition: all 0.2s;
    background-color: #f9f9f9;
}


.form-group input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 126, 255, 0.2);
    outline: none;
    background-color: white;
}
.form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 126, 255, 0.2);
    outline: none;
    background-color: white;
}

.form-group .input-icon {
    position: absolute;
    left: 15px;
    top: 35px;
    color: #7f8c8d;
    font-size: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 12px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-left: 5px;
}

.forgot-password {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.login-button:hover {
    background-color: #000f1f;
    transform: translateY(-1px);
}

.login-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #7f8c8d;
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
    margin: 0 8px;
}

.register-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--normul);
    color: white;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.register-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
color:#ecf0f1
}


.login-button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* لإزالة الأسهم من حقل الرقم في كروم وسفاري */
input.no-spinner::-webkit-inner-spin-button,
input.no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* لإزالة الأسهم في فايرفوكس */
input.no-spinner {
    -moz-appearance: textfield;
}

/* ################forgot-password#################### */
input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.captcha {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 1px 25%;
}
.captcha img {
    margin-left: 10px;
    cursor: pointer;
}
.hidden {
    display: none;
}
.otp-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}
.otp-input:focus {
    border-color: #007bff;
}












  /* Steps styling */
  .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.step-circle.active {
    background-color: #6EACDA;
}
.step-circle.completed {
    background-color: #28a745;
}
.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
    z-index: 0;
}

#reviewData {
    list-style-type: none;
    padding: 0;
}
#reviewData li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}
#uploadedImages img {
    max-width: 100px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.verification-code {
    text-align: center;
    margin: 20px;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.code-inputs input {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    outline: none;
}

.code-inputs input:focus {
    border-color: #007bff;
}

@media (max-width: 480px) {
    .login-container {
        padding: 8px;
    }

    .login-header {
        padding: 12px;
    }

    .login-header img {
        width: 45px;
        height: 45px;
    }

    .login-form {
        padding: 15px;
    }

    .form-group input {
        padding: 8px 10px 8px 30px;
    }
}






