body {
    font-family: Arial, sans-serif;
    background-color: #1e90ff;
}

fieldset {
    width: 50%;
    margin-top: 30px;
    border: 3px solid #00bfff;
    border-radius: 10px;
    background-color: #2b2b85;
    color: white;
    padding: 30px;
}

legend {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    padding: 5px 15px;
}

img {
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}

label {
    font-size: 16px;
    font-weight: bold;
}

input{
    width: 90%;
    padding: 8px;
    border: none;
    border-bottom: 2px solid #00bfff;
    background: transparent;
    color: white;
    font-size: 14px;
}

textarea {
    resize: none;
    background: transparent;
    border: none;
    border-bottom: 2px solid #00bfff;
    color: white;
    font-size: 14px;
}
#Submit{
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

#Submit:hover {
    background-color: white;
    color: #2b2b85;
    transition: 0.3s;
}