body,
html {
    background: #040409;
    overflow-x: hidden;
}

.hero-bg {
    background-image: url("./assets/hero-bg.jpg");
    height: 100vh;
    background-size: cover;
    max-width: 100vw;
}

.bg-glass {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); */
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    backdrop-filter: blur(5px) saturate(180%); /* Frosted glass blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.202); /* Subtle glass-like edge */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2); /* Outer shadow for depth */
}

.secondary-text {
    color: rgba(255, 255, 255, 0.72);
}

.info-card {
    background: #051a37;
    border: 1px solid #076be5;
    min-height: 300px;
    height: 100%;
}

.form-input {
    background: #051a37;
    border: 1px solid #076be5;
    color: white;
    display: block;
    width: 100%;
    padding: 0.8rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border-radius: 3px;
    /* transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
}
