#pasteForm {
    max-width: 500px;
    margin: 40px auto;
    padding: 24px 32px;
    border-radius: 12px;
}

.bioInputLabel label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

#pasteForm input[type="text"],
#pasteForm textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db46;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff75;
    transition: border-color 0.2s;
}

#pasteForm input[type="text"]:focus,
#pasteForm textarea:focus {
    border-color: #000000;
    outline: none;
}

/* Button styling */
#pasteForm button[type="submit"] {
    width: 100%;
    padding: 12px 0;
    background: #fff;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#pasteForm button[type="submit"]:hover {
    background: #313131;
}

#pasteStatus {
    display: none;
    text-align: center;
    background: #ffffff75;
    border-radius: 0.5em;
    padding: 0.7em 1em;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

#pasteStatus:not(:empty) {
    display: block;
}