* {
    padding: 0%;
    margin: 0%;
    font-family: 'Roboto', sans-serif;
    direction: rtl;
}

.Hero {
    height: 100vh;
}

.login-section {
    display: flex;
}

.image-section {
    width: 50%;
    height: auto; /* أو أي ارتفاع مناسب */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 30px;
    width: 50%;
}

.logo {
    width: 150px;
    height: 150px;
    display: block;
    margin: 50px;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-section h2 {
    color: #51739e;
    margin-bottom: 20px;
    font-size: 75px;
}

.input-group {
	    width: 90% !important;

    margin-bottom: 15px;
}

.login-title {
    font-size: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px !important;
    background-color: #d2d9e3;
}


.login-button {
    background: #4682A9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.login-button:hover {
    background: #365f7f;
}