body {
    font-family: Arial, sans-serif;
    direction: rtl;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    direction: rtl;
    background: url(imgs/signup.jpeg);
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.checkBoxCs , .checkBoxCsSign{
    display: flex;
    align-content: center;
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
    border-top-left-radius: 10px !important;
}

button {
    background-color: #f1f1f1;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 50%;
}

button.active {
    background-color: #FFD998;
    color: #D27C2C;
}

.panel {
    display: none;
    text-align: right;
}

.panel.active {
    display: block;
}

.hidden {
    display: none;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input[type="checkbox"]{
    width: 10%;
    align-self: center;
}

label{
    margin-bottom: 0 !important;
    align-self: center;
}
.submit-btn {
    background-color: #ffa500;
    border: none;
    padding: 10px;
    color: white;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 460px) {
    .container{
        width: 350px !important;
    }
}

@media screen and (max-width: 370px) {
    .container{
        width: 320px !important;
    }
}


@media screen and (max-width: 300px) {
    body{
        display: none;
    }
}