* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-wrap:balance;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    background: #1E1E1E;
    min-height: 100vh;
    scroll-behavior: smooth;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form Section */
.contact-form {
    padding: 1rem 0 2rem;
    text-align:center;
    margin: auto;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height: 95vh;
    background: linear-gradient(180deg, #000 0%, #4F29B0 75%, #F5905F 93%, #54229C 95%, #1e1e1e 100%);
}

.logo {
    vertical-align:bottom;
    width:100%;
    max-width:120px;
    height:auto;
    padding-bottom:2rem;
}

.contact-form h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'RoslindaleDisplayCondensed';
}

.contact-form > p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto 2rem;
    max-width:540px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    font-family: "Roboto Mono", monospace;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: #A16FFF;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(161, 111, 255, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    padding: 1rem 3rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 41, 176, 0.4);
}

.form-disclaimer {
    font-size: 0.6rem!important;
    opacity: 0.7;
    line-height: 1.5;
    text-align: center;
    margin-bottom:1rem !important;
}

/* Footer */
footer {
    text-align: center;
    color: white;
    opacity: 0.7;
    font-size: 0.6rem !important;
    padding:.5rem 1rem;
    background: #1e1e1e;
}

footer a {
    color:white;
    text-decoration:none;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body {
        scroll-behavior: auto;
    }
}

@media (max-width: 767.98px) {

    .contact-form-fields {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
}