/*
Theme Name: SOTD
Description: Song of the Day Theme
Author: Jody Whitesides
Version: 1.0
Template: twentytwentyfive
*/

.songInfo {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.album-cover img {
    max-width: 200px;
}

.album-info {
    flex: 1;
}

.audio {
    margin-top: 20px;
}



.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    background-color: #f5f5f5 !important;
    border: 2px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5 !important;
    color: #333333;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 18px !important;
    height: 1.8rem !important;
}

.wpcf7 textarea {
    background-color: #f5f5f5 !important;
    border: 2px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5 !important;
    color: #333333;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 18px !important;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    border-color: #E4322D !important;
    outline: none;
    background-color: #ffffff !important;
}

.wpcf7 input[type="submit"] {
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    padding: 0.5rem 1rem;
    min-height: 2.5rem;
    background-color: #E4322D;
    border: 2px solid #E4322D !important;
    color: #ffffff;
    cursor: pointer;
    transition-duration: 0.4s;
    animation: pulse-button 1.5s infinite;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #2d7a3a;
    border: 2px solid #2d7a3a !important;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 10px 0 rgba(45,122,58,0.24), 0 10px 25px 0 rgba(45,122,58,0.19);
    animation: none;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 50, 45, 0.7);
    }
    50% {
        box-shadow: 0 0 12px 8px rgba(228, 50, 45, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(228, 50, 45, 0);
    }
}

div.wpcf7 input[type="submit"] {
    display: block !important;
    margin: 15px auto 0 auto !important;
    float: none !important;
    align-self: center !important;
}

.wpcf7 {
    background-color: #ffffff !important;
    border: 2px solid #cccccc !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 15px !important;
    border-radius: 5px;
    color: #333333;
    font-size: 14px;
    line-height: 2;
}

.wpcf7 label {
    color: #333333;
    font-weight: bold;
    display: block;
}

.wpcf7-response-output {
    color: #E4322D;
    margin: 0 !important;
    padding: 8px !important;
    min-height: 0 !important;
}

.wpcf7-not-valid-tip {
    color: #E4322D;
    font-size: 13px;
}

.wpcf7-spinner {
    display: none;
    margin: 0 !important;
}

.wpcf7 br {
    display: none !important;
}

.wpcf7-form p {
    margin-bottom: 10px !important;
}

.wpcf7-form p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7-form p:last-child {
    margin-bottom: 0 !important;
}