.ht-frontend-lock-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.ht-frontend-lock-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    box-sizing: border-box;
}

.ht-frontend-lock-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 6px solid #00B545;
}

.ht-frontend-lock-logo-wrapper {
    margin-bottom: 30px;
}

.ht-frontend-lock-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ht-frontend-lock-card h1 {
    font-size: 24px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.ht-frontend-lock-card p {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.ht-frontend-lock-field {
    margin-bottom: 20px;
}

.ht-frontend-lock-field input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.ht-frontend-lock-field input[type="password"]:focus {
    outline: none;
    border-color: #00B545;
    box-shadow: 0 0 0 3px rgba(0, 181, 69, 0.1);
}

.ht-frontend-lock-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #00B545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ht-frontend-lock-button:hover {
    background-color: #009e3d;
}

.ht-frontend-lock-error {
    background-color: #fff5f5;
    color: #c53030;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #feb2b2;
}

@media (max-width: 480px) {
    .ht-frontend-lock-card {
        padding: 30px 20px;
    }
    .ht-frontend-lock-card h1 {
        font-size: 20px;
    }
}
