* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    direction: rtl;
    overflow-x: hidden;
}

section {
    width: 100vw;
    height: 100vh;
    background-image: url(imgs/WhatsApp\ Image\ 2025-08-04\ at\ 15.52.04_91004a62.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 25%;
}

.mine {
    width: 400px;
    background-color: #F7F7F7;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.mine img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.p1 {
    color: #000;
    text-align: center;
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    /* 57.6px */
}

.p2 {
    color: #000;
    text-align: center;
    font-family: Cairo;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    /* 32px */
}

form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ada6a6;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    background-color: #F7F7F7;
}

button {
    color: #F2F2F2;
    background-color: #282564;
    text-align: center;
    font-family: Cairo;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    align-self: center;
    /* 25.6px */
    padding: 5px 20px;
    border-radius: 10px;
}

.button-box {
    display: flex;
    justify-content: center;
}




@media (max-width: 768px) {
    section{
        background-size: cover;
        height: 100vh;
        justify-content: center;
        align-items: center;
        padding-right: 0;
    }
}