* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* .container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */
.containerd {
    transform: translate(60px, 10px);
    display: flex;
    width: 100%;
    max-width: 1000px;
    /* max-width: 900px; */
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset -1px 1px 13px 0px rgb(97 184 174);
}

/* .login-box {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
.login-boxx {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px; /* جعل عرض النموذج أصغر */
}

.login-contentt h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.input-groupd {
    margin-bottom: 20px;
}

.input-groupd label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-groupd input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-top: 8px;
}
.input-groupd input:focus{
    outline: none;
    border: 2px solid rgb(109 177 188);
    box-shadow: 1px 1px 10px 3px rgb(109 177 188);
}

.btn {
    width: 100%;
    padding: 12px;
    /* background-color: #4d9e66; */
    background-color: rgb(109 177 188);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.btn:hover {
    /* background-color: #0cad3f; */
    background-color: #3d897f;
}

.sign-up-text {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.sign-up-text a {
    color: #4A52E3;
    text-decoration: none;
}

.faq-section {
    margin-top: 40px;
}

.faq-icon {
    background-color: #eee;
    border-radius: 50%;
    padding: 2px 8px;
    color: #4A52E3;
    margin-right: 10px;
}

.faq-section p {
    font-size: 14px;
    color: #333;
}

.small-text {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.contact-link {
    color: #4A52E3;
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-top: 10px;
}

/* .video-box {
    flex: 1;
    overflow: hidden;
    position: relative;
} */
/* .video-box {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
} */
.video-box {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* إضافة تراكب شفاف للفيديو */
.video-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* لون التراكب الأبيض مع شفافية */
    z-index: 1;
}
@media screen and (max-width: 398px ){
    .containerd{
        margin-top: 400px;
        transform: translate(0px, 0px);
    display: block;
    }
}
