@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic&display=swap');


body {
    background-color: #00B2A9;
    font-family: 'Noto Sans Arabic', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
}
.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

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

.form-control {
    border-radius: 0.5rem;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    text-align: center; 
}

.form-control:focus {
    border-color: #00a19a;
    box-shadow: 0 0 5px rgba(44, 85, 129, 0.5);
}

a.btnn {
    display: inline-block;
    background-color: #272a5f;
    color: white;
    padding: 12px 20px;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none; /* Remove the underline */
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

a.btnn:hover {
    background-color: #00a19a;
}

a {
    text-decoration: none;
    color: #272a5f;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 1rem;
}

a:hover {
    background-color: #00a19a;
}

.error-message {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btnn {
    display: inline-block;
    background-color: #272a5f;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btnn:hover {
    background-color: #00a19a;
}