body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    color: #a72223;
    direction: ltr;
}

.container {
    text-align: center;
    background-color: #ffffff;
    color: #a72223;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.container:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-ar {
    direction: rtl;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #a72223;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #a72223;
}

button {
    padding: 12px 30px;
    background-color: #a72223;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

button:hover {
    background-color: #8a1d1f;
}
