
body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

#form-container {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100vh;
    margin-left: 100px;
}

.label {font-size: 20pt;

}
.step {
    display: none;
    text-align: left;
    font-size: 30pt;
    opacity: 70%;
}

.step.active {
    display: block;

}

input:focus {
    outline: none; 
    border-bottom: 2px solid rgb(255, 255, 255); 
}

button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 30px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    
    font-size: 15pt;
    padding: 10px 20px;
    margin-top: 10px;

}

input {
    flex: 1; 
    font-size: 20pt;
    padding: 10px;
    background: none;
    border: none; 
    border-bottom: 1px solid rgb(255, 255, 255); 
    padding-bottom: 5px;
    color: white;
    margin-bottom: 20px;
    width: 200%;

   
}
input[type="date"] {
    font-family: Arial, sans-serif;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: white;
    text-decoration: none;
}

.floating {
    position: absolute;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes float1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(120px, -80px) rotate(10deg); }
    50% { transform: translate(-100px, 100px) rotate(-15deg); }
    75% { transform: translate(80px, -120px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-90px, 100px) rotate(-5deg); }
    50% { transform: translate(120px, -60px) rotate(15deg); }
    75% { transform: translate(-80px, 80px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0, 0, 0);

    color: rgb(255, 255, 255);
    padding: 20px;
    z-index: 1000;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(215, 215, 215, 0.5);
    text-align: center;
    max-width: 800px;
    width: 80%;

    opacity: 90%;

    filter: blur(0.5px) drop-shadow(3px 3px 10px rgb(166, 166, 166));
  }

.modal.open {
    display: block;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.overlay.open {
    display: block;
}
