body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photo.jpeg') no-repeat center center/cover;
    filter: blur(5px);
    z-index: -1;
}

.verification-container {
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9); /* Увеличиваем непрозрачность фона */
    padding: 80px; /* Увеличиваем отступы */
    border-radius: 15px; /* Увеличиваем радиус скругления */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); /* Увеличиваем тень */
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 2rem; /* Увеличиваем размер заголовка */
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

p {
    font-size: 1rem; /* Увеличиваем размер текста */
    margin-bottom: 40px; /* Увеличиваем отступ снизу */
    animation: fadeInUp 1s ease-in-out;
}

.verify-btn {
    padding: 10px 25px; /* Увеличиваем размеры кнопки */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem; /* Увеличиваем размер текста на кнопке */
    background-color: white;
    color: black;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.verify-btn:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}
