/*
Theme Name:     NerdMeeting Twenty Twenty Three Child Theme
Theme URI:      https://gitlab.com/nerdmeeting/nm-twentytwentythree-child
Description:    Twentytwentythree child theme.
Author:         NerdMeeting Nathan
Author URI:     https://nerdmeeting.com
Template:       twentytwentythree
Version:        0.1.0
*/

#message-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

#message-form input[type="text"],
#message-form input[type="email"],
#message-form textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fdfdfd;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#message-form input[type="text"]:focus,
#message-form input[type="email"]:focus,
#message-form textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.2);
    outline: none;
}

#message-form hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #eee;
}

#message-form button[type="submit"] {
    display: inline-block;
    background-color: #2271b1;
    color: #fff;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

#message-form button[type="submit"]:hover {
    background-color: #135e96;
}

.margin-block-start-0 { margin-block-start: 0 !important; }
.margin-block-end-0 { margin-block-end: 0 !important; }

#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    opacity: 0.93;
}