@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
            
* {
    margin: 0;
    padding: 10;
    font-family: 'Poppins', cairo;
}

body {
    background-image: linear-gradient(60deg, #158382 0%, #96deda 50%, #158382 100%);

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    width: 400px; /* تحديد العرض */
    height: 180px; /* تحديد الارتفاع */
    object-fit: contain; /* لضبط الصورة داخل الإطار */
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 350px;
}


.number-input, .verification, .result {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

input {
    font-size: 14px;
    outline: none;
    padding: 5px 10px;
}

button {
    font-size: 17px;
    font-weight:bold;
    padding: 8px;
    border: none;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #44a29d;
    border-radius: 5px;
    width: 100%;
    color: #ffff;
    cursor: pointer;
}

button:hover {
    background-color: #faa529;
}

img {
    width: 50px;
}
/* تخصيص حاوية reCAPTCHA */
#recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}