/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    line-height: 1.6;
}

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

/* The White Box Wrapper */
.box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

/* Form Elements */
input[type="password"], 
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #24292e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1b1f23;
}

/* Link List Styling (The "Neat" Part) */
.content {
    margin-top: 10px;
}

.content p {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.content p:last-child {
    border-bottom: none;
}

/* Simple, Text-Based Links */
.content p a {
    display: block;
    padding: 14px 0;
    color: #0366d6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.content p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Style for regular text notes that aren't links */
.text-note {
    padding: 14px 0;
    color: #6a
