/* General body styling */
body {
    background-color: #1a1a1a;  /* Dark grey background */
    color: #e0e0e0;  /* Soft grey text */
    font-family: 'Courier New', Courier, monospace;  /* Monospace font */
    text-align: center;
    margin-top: 100px;
}

/* Style the form */
form {
    display: inline-block;
    background-color: #2a2a2a;  /* Slightly lighter grey */
    padding: 20px;
    border-radius: 5px;  /* Subtle rounded corners */
    border: 1px solid #3c3c3c;  /* Dark border */
}

/* Spacing for form rows */
.form-row {
    margin-bottom: 20px;
}

/* Input field styling */
input[type="text"] {
    background-color: #333333; /* Dark grey background */
    color: #e0e0e0;  /* Soft grey text */
    border: none;
    border-bottom: 1px solid #555555;  /* Thin, subtle border */
    padding: 10px;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    width: 300px;
}

input[type="text"]:focus {
    outline: none;
    border-bottom: 1px solid #777777;  /* Slightly brighter on focus */
}

/* Button styling */
button {
    background-color: #444444;  /* Darker grey button */
    color: #e0e0e0;
    border: 1px solid #555555;  /* Thin border */
    padding: 10px 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 3px;
}

button:hover {
    background-color: #555555;  /* Subtle hover effect */
}

/* Error message */
#message {
    color: #ff4444;  /* Soft red */
    margin-top: 15px;
    font-size: 14px;
}

/* Success message (phone number link styling) */
#message a {
    color: #00aaff;  /* Blue link */
    text-decoration: none;
}

#message a:hover {
    text-decoration: underline;
}
