body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #A38D5E;
    margin: 0;
    padding: 20px;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 25px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
label[for="new-password"] {
    margin-bottom: 0;
}

.input-group {
    position: relative;
    margin-bottom: 24px;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding-right: 40px; /* Make space for the icon */
}
.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

#strength-meter {
    width: 100%;
}
.feedback-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#feedback-warning {
    color: #c0392b;
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 8px;
    min-height: 1.2em;
}
#feedback-suggestions {
    margin: 0;
    padding-left: 20px;
    font-size: 0.85em;
}
#feedback-suggestions li {
    margin-bottom: 6px;
}
#feedback-suggestions li::marker {
    content: '💡';
}

#confirm-message {
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 12px;
    min-height: 1.2em;
}
.match { color: green; }
.no-match { color: red; }
