body {
    margin: 0;
    font-family: 'PFDinDisplayPro-Regular', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* background: #f5f5f5; */
    color: #333;
}

.form-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.form-title-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #444;
}

.form-button {
    width: 88%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #ff6666;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-button:disabled {
    background: #cc9999;
    cursor: not-allowed;
}

.form-button:hover {
    background: rgb(229, 136, 136);
}

#lemin-cropped-captcha {
    width: 100%;
    margin-bottom: 20px;
}

#timer {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}