.debt-lookup-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.debt-lookup-form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3a8a;
    text-transform: uppercase;
}

.debt-lookup-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.debt-lookup-form input[type="submit"] {
    background-color: #ff4d4f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    width: 100%;
}

.debt-lookup-form input[type="submit"]:hover {
    background-color: #e63946;
}

.debt-lookup-form .error {
    color: #ff4d4f;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.debt-result {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.debt-result h3 {
    color: #1e3a8a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
}

.debt-result p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.debt-result p strong {
    color: #1e3a8a;
    font-weight: bold;
}

.debt-result p:nth-child(6) {
    background-color: #1e3a8a;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    text-align: center;
}

.debt-result p:nth-child(6) strong {
    color: white;
}

.debt-result .error {
    color: #ff4d4f;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}