html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}



div.loginHeader h1 {
    text-align: center;
    font-size: 42px;
    padding: 40px;
}



.content {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    padding: 30px 25px !important;
    width: 90%;
    max-width: 450px !important;
    background: rgba(255,255,255,0.04);
    box-shadow: -1px 4px 28px 0px rgba(0,0,0,0.75);
    z-index: 9;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.content h3 {
    color: #353434;
    font-size: 28px;
    margin-bottom: 25px;
}

.filed {
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    background: #f4f2f295;
    border-radius: 5px;
    overflow: hidden;
}

.filed input {
    height: 100%;
    width: 100%;
    text-align: left;
    color: #222;
    font-size: 16px;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
}

.space {
    margin-top: 16px;
}

.show {
    position: absolute;
    left: 12px;
    font-size: 13px;
    color: #5a5959;
    font-weight: 700;
    cursor: pointer;
}

.filed1 button[type="submit"] {
    background: #653644;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.filed1 button[type="submit"]:hover {
    background: #522c38;
}

.signup {
    color: black;
    margin-top: 15px;
    font-size: 14px;
}

.signup a {
    color: #653644;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

div.errorMessage p {
    color: darkred;
    font-family: monospace;
}

select {
    text-align: center;
    width: 100%;
    max-width: 16em;
    background: #653644;
    border: 1px solid #653644;
    color: #fff;
    padding: 10px;
    margin-top: 11px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .content {
        width: 90% !important;
        max-width: 300px;
        padding: 30px !important;
    }

    .content h3 {
        font-size: 20px !important;
    }

    .filed input {
        font-size: 14px !important;
    }

    .filed1 button[type="submit"] {
        font-size: 16px !important;
        padding: 10px !important;
    }

    .signup {
        font-size: 12px !important;
    }

    .form {
        width: 90% !important;
    }

    /* ضمان عرض الخلفية بشكل صحيح */
    .img {
        background-size: cover !important;
        height: 100vh !important;
    }
}

