* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.mlg-lock-page {
    background: #f6f3ea;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #222;
}

.card {
    width: 420px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.icon {
    font-size: 34px;
    color: #7f9b72;
    margin-bottom: 14px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

hr {
    border: none;
    border-top: 1px solid #e7e0d5;
    margin-bottom: 28px;
}

.question {
    font-size: 42px;
    margin-bottom: 22px;
}

input {
    width: 100%;
    padding: 16px;
    border: 1px solid #d8cfc1;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    outline: none;
    background: #fff;
    margin-bottom: 18px;
}

input:focus {
    border-color: #9fbe93;
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: #b9d2a8;
    color: #1f2a1f;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background: #a9c696;
}

.error {
    margin-top: 16px;
    color: #b34b4b;
    font-size: 14px;
}