* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #3B3B3B;
    font-weight: bold;
}

main {
    display: flex;
}

form {
    width: 275px;
    background-color: #ECF7FC;

    /* justify-content: center;
    align-items: center; */

    padding: 3px;
    border: solid 3px #3B3B3B;
}

label {
    display: block;
    margin-bottom: 3px;
    margin-top: 6px;
}

fieldset {
    border: none;
    outline: none;
    padding: 5px;
}

input {
    width: 250px;
    height: 20px;

    outline: none;
    border: solid 1px #C5D9ED;
    box-shadow: inset 0px 1px 3px #d9dee4;
}

button {
    display: block;
    width: 160px;
    height: 30px;

    border-radius: 100px;
    border: solid 3.5px #C5D9ED;
    background-image: linear-gradient(to bottom, #F2F6F9, #E4EDF6);
    align-self: center;
    margin: 5px auto;
}