/*
Theme Name: My Block Theme
Theme URI: https://233.vcherukuri.imgd.ca/Project1/
Author: Venkata Subhash Cherukuri
Author URI: https://233.vcherukuri.imgd.ca/
Description: A custom portfolio theme built for the Digital Design course showcasing UI/UX, web design, and interactive projects.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vs-portfolio
Tags: portfolio, custom-theme, responsive, block-theme
*/

/* Contact Form styling */

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #2563EB;
    outline: none;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    background-color: #0F172A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #abb8c3;
}

/* Center the form */
.wpcf7 {
    max-width: 500px;
    margin: 0 auto;
}

/* Make fields smaller */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 6px;
}

/* Center the submit button */
.wpcf7 input[type="submit"] {
    display: block;
    margin: 15px auto 0;
}

