body {
    margin: 0;
    padding: 0;
    background-color: #030746;
    /* font-family: 'Adoody', Arial, sans-serif; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.form-group {
    margin-bottom: 30px;
}

input[type="text"],
input[type="tel"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    font-size: 24px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
    direction: rtl;
}

.btn-login {
    background-color: #030746;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    width: 100%;
}

.btn-login:hover {
    background-color: #0e8cff;
}

.error-message {
    color: #ff0000;
    margin-top: 10px;
    display: none;
    font-size: 20px;
}
.logo-container {
    margin-bottom: 30px;
    text-align: center;
}

/* three equal rows layout for pages that use .three-rows wrapper */
.three-rows {
    display: flex;
    flex-direction: column;
    height: 100vh; /* occupy full viewport so children can split equally */
}

.three-rows .logo-container {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* spacing controlled inside if needed */
}

.three-rows .logo-container canvas {
    max-width: 100%;
}

.three-rows .logo {
    max-width: 45%;
    width: auto;
    height: auto;
}