    <style>
        /* Центрирование по экрану */
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
            font-family: 'Arial', sans-serif;
        }
        
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100vh;
            justify-content: space-around;
            max-width: 720px;
            min-width: 300px;
            margin: auto; 
            text-align: center;
        }

        /* Стили формы */
        form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
        align-items: stretch;
    justify-content: center;
    justify-content: center;
        }

        /* Стили для заголовка формы */
        form label {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        /* Поле для ввода пароля */
        input[type="password"] {
            padding: 15px;
            border: none;
            border-radius: 25px;
            margin-bottom: 20px;
            max-width: 350px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-size: 16px;
            background: #f1f1f1;
            outline: none;
            transition: background 0.3s ease;
        }

        /* Эффект при фокусе на поле ввода */
        input[type="password"]:focus {
            background: #e0e0e0;
        }

        /* Кнопка отправки формы */
        button {
            padding: 15px 30px;
            background-color: #4CAF50;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
            transition: all 0.3s ease;
            max-width: 350px;
        }

        /* Эффект при наведении на кнопку */
        button:hover {
            background-color: #45a049;
            box-shadow: 0 6px 15px rgba(76, 175, 80, 0.5);
        }

        /* Эффект при нажатии на кнопку */
        button:active {
            transform: scale(0.98);
        }

    </style>