/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 📁 Body + Background image*/
body {
    background-color: black;
}
main{
    position: relative;
    min-height: 89vh;
}
main::before{
    content: "";
    background: url("../images/background.jpg") no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    height: 100%;
    width: 100%;
}

/* 📁 Form */
.form-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    height: 93vh;
}

.form-container h1{
    font-size: 4rem;
    color: #ffffff;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}

#member-form {
    background-color: rgba(255, 255, 255, 0.612);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;

    animation: appear 1.5s ease-in-out 0s 1 normal forwards;
}
@keyframes appear {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
#member-form:hover{
    transition: all 1s ease-in-out;
    box-shadow: 0 0 20px rgb(123, 123, 255);
}

#member-form label {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Input Fields */
#member-form input[type="text"],
#member-form input[type="email"],
#member-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

/* Submit Button */
#member-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #0099cc;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    transition: all 0.5s ease-in-out;
    background-color: #0077aa;
}