body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #ffffff;
}

.password-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.password-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

.password-container input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
    margin-bottom: 15px;
}

.password-container button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background: #6a3093;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.password-container button:hover {
    background: #a044ff;
}

.error-message {
    color: red;
    margin-top: 10px;
}