dy {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #e5e5e5;
}

.form-container {
    width: 100%;
    max-width: 400px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #2F4F4F;
}

input {
    width: 100%;
    background: #f7f7f7;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-bottom: 15px;
    outline: none;
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #0088cc;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover,
button:focus-visible {
    background-color: #007bb5;
}

.hide-cursor::placeholder {
    color: #000;
}

.hide-cursor {
    caret-color: transparent;
}

.no-select {
    -webkit-user-select: none; /* Для Safari */
    -moz-user-select: none;    /* Для Firefox */
    user-select: none;         /* Для всех остальных браузеров */
}

div {
    color: red;
    font-size: 15px;
    margin-top: 10px;
    display: none;
}