@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.25rem;
}

div {
    display: flex;
    flex-direction: column;
}

body {
    margin: 0;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 12rem;
    background: linear-gradient(0deg, rgba(75,16,121,0) 0%, rgba(75,16,112,0.33) 100%);
}
    header img {
        width: 75%;
        max-width: 600px;
        height: fit-content;
    }
    header h1 {
        width: 50%;
        margin: 0;
        text-align: center;
        font-size: 2rem;
        line-height: 2.25rem;
        font-weight: bold;
        color: #4b1079;
    }

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container {
    width: 40%;
    margin: 2rem;
}
    .form-container form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .form-container form div {
            margin-top: .5rem;
            margin-bottom: .75rem;
        }
        .form-container form input {
            margin: .5rem;
            max-width: max-content;
        }

button:hover {
    cursor: pointer;
}

.submit-btn {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: white;
    border-radius: 4px;
    box-shadow: 3px 3px 5px black;
    background: linear-gradient(0deg, rgba(101, 29, 156, 0.8) 0%, rgb(157, 64, 214, 0.8) 100%);
}
    .submit-btn:hover {
        background: linear-gradient(0deg, rgba(101, 29, 156) 0%, rgb(157, 64, 214) 100%);
        box-shadow: 1px 1px 3px black;
    }

.status-output {
    font-size: 1.33rem;
    line-height: 1.75rem;
    margin-block: 1rem;
    text-align: center;
}