.passprotect-page-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.passprotect-form-container {
    width: 100%;
    max-width: 500px;
}

.passprotect-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.passprotect-icon {
    margin-bottom: 20px;
}

.passprotect-icon svg {
    display: inline-block;
}

.passprotect-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.passprotect-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.passprotect-input-group {
    margin-bottom: 15px;
}

#passcode-input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

#passcode-input:focus {
    outline: none;
    border-color: #2271b1;
}

.passprotect-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #2271b1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.passprotect-submit-btn:hover {
    background: #135e96;
}

.passprotect-submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.passprotect-error {
    background: #dc3232;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.button-loader svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .passprotect-form-box {
        padding: 30px 20px;
    }

    .passprotect-title {
        font-size: 24px;
    }

    .passprotect-description {
        font-size: 14px;
    }
}
