html, body {
    width: 100%;
    height: 100%;
    background: linear-gradient(25deg, #FFBE0B, #FB5607, #FF006E, #8338EC, #3A86FF);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

#content_container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#form_container {
    width: 80%;
    max-width: 400px;
    background-color: #370617;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

#form_header_container {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #fff;
    background: #000;
}

#form_header {
    font-size: 24px;
    font-family: 'Bowlby One SC', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(25deg, #FFBE0B, #FB5607, #FF006E, #8338EC, #3A86FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#form_content_container {
    padding: 20px;
}

input {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 20px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ffbe0b;
    border-radius: 5px;
}

#button_container {
    text-align: center;
    margin-top: 20px;
}

#button_container button {
    width: 45%;
    height: 40px;
    background: linear-gradient(80deg, #FFBE0B, #FB5607);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

#button_container button:hover {
    background: #FB5607;
}
