@charset "utf-8";

/*
   CSS Page of "Webform"
   Author: Joel Joaquin Nunez
   Date: 05/06/2026
   Filename: webform.css
*/

/* HTML */
    html {
            background:rgba(0, 0, 0, .95);
        }

/* NAV STYLES */
    .horizontalnav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .horizontalnav ul {
        background: black;
        display: flex;
        justify-content: space-between;
        list-style-type: none;
        padding: 0;
    }
    .horizontalnav li {
        flex: 1;
    }
    .horizontalnav a {
        display: block;
        text-align: center;
        padding: 10px;
        color: white;
        text-decoration: none;
        font-family: "Cinzel", serif;
    }
    .horizontalnav a:hover {
        background-color: rgba(255,255,255, 0.1);
    }

/* FORM CONTAINER STYLES */
    form {
        max-width: 600px;
        margin: 40px auto;
        padding: 30px;
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid #390808;
        box-shadow: 0 0 15px rgba(183, 28, 28, 0.3);
        color: white;
        font-family: "Cinzel", serif;
    }
    .form-group {
        margin-bottom: 25px;
    }

/* INPUTS AND TEXT AREA STYLES */
    input[type="text"],
    input[type="url"],
    textarea {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
        background-color: #1a1a1a;
        border: 1px solid #444;
        color: white;
        font-family: inherit;
        border-radius: 4px;
        box-sizing: border-box;
    }

/* EFFECTS */
    input:focus, textarea:focus {
        outline: none;
        border-color: #b71c1c;
        box-shadow: 0 0 8px rgba(183, 28, 28, 0.6);
        transition: 0.3s;
    }

/* BUTTON STYLES */
    button[type="submit"], input[type="submit"] {
        background-color: #390808;
        color: white;
        padding: 12px 24px;
        border: none;
        cursor: pointer;
        font-family: "Cinzel", serif;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
    }
    button[type="submit"]:hover {
        background-color: #ff1744;
    }