body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #281931;
    color: #ffffff;
}

.rtl {
    direction: rtl;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 420px;
    background-color: #071017;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.container-wrapper {
    padding: 0 20px;
}

.language {
    display: flex;
    justify-content: right;
    margin: 10px 0px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.lang-switcher {
    font-size: 12px;
    text-decoration: none;
    width: 70px;
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid #6410b1;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

    .lang-switcher:hover {
        background-color: #6410b1;
    }

img.banner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

img.check {
    width: 40%;
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
    object-fit: contain;
}

.title-success {
    font-size: 24px;
    color: #0ed678;
    margin-bottom: 20px;
}

.title-error {
    font-size: 24px;
    color: #f24d6a;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #ffffff;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #6410b1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #560e99;
    }

.terms {
    text-align: left;
    font-size: 12px;
    color: #ffffff;
    margin-top: 20px;
}

    .terms h3 {
        text-align: center;
    }

    .terms ul {
        padding-left: 20px;
    }

    .terms li {
        margin-bottom: 10px;
    }

@media (max-width: 420px) {
    h1 {
        font-size: 20px;
    }
}

p.decoration-text {
    color: #000;
    font-weight: 800;
    font-size: 18px;
    text-shadow: -1px 0 #ff40b6, 0 1px #ff40b6, 1px 0 #ff40b6, 0 -1px #ff40b6;
}

.service-description span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

/* operator options */
.opt-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

/* New Radio */
.radio-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

    .radio-options label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .radio-options input[type='radio'] {
        display: none; /* Hide the radio buttons */
    }

.operator-image {
    width: 100px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.radio-options input[type='radio']:checked + .operator-image {
    border-color: #ff5ee4;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    filter: grayscale(0%);
}

.operator-image:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}
