html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(0, 0);
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

.form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-container:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
select.styled-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e1e1e1 !important;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select.styled-select:focus {
    border-color: #55a023;
    box-shadow: 0 0 10px rgba(85, 160, 35, 0.3);
}

.styled-select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10"><polygon points="7 10 0 0 14 0" fill="%23ffffff"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem top 50%;
    background-size: 0.65rem auto;
    color: #ffffff;
}

#submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #55a023;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#submit-btn:hover {
    background-color: #4a8d1e;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(85, 160, 35, 0.3);
}

#submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(85, 160, 35, 0.2);
}

@media (max-width: 600px) {
    .form-container {
        width: 90%;
        margin: 0 auto;
        padding: 1.5rem;
    }
}    padding-right: 2rem;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #5c67f2;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #8DB1DD;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
    }
}
