* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Чёрный фон */
    color: #fff; /* Белый текст */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    background-color: rgb(0, 0, 0); /* Полупрозрачный белый блок */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(0, 0, 0);
    max-width: 700px;
    width: 100%;
}

.red-text {
    color: #ff0000; /* Яркий красный */
    font-size: 24px; /* Большой текст */
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5); /* Лёгкая тень */
}

input[type="text"] {
    width: 85%;
    padding: 16px;
    margin: 25px 0;
    border: 2px solid #ff0000; /* Красная рамка */
    border-radius: 25px; /* Закруглённые углы */
    background-color: rgb(0, 0, 0); /* Тёмный полупрозрачный фон */
    color: #fff; /* Белый текст в поле */
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus {
    border-color: #00ff00; /* Зелёный при фокусе */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgb(0, 0, 0);
}

#status {
    margin-top: 25px;
    font-size: 18px;
    height: 30px;
    min-height: 30px;
}
