form{
    display: flex;
    flex-direction: column;
    height: 500px;
}

input[type=file] {
    color: #222245;
    padding: 8px 12px;
    background-color: #fff;
    border-radius: 15px;
    width: 98%;
    height: 90%;
}

input[type=file]::file-selector-button {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 8px;
    border: none;
    background: aquamarine;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

input[type=file]::file-selector-button:hover {
    background: rgb(97, 224, 182);
}

input[type=file] {
    outline: 5px dashed #000;
    outline-offset: 2px;
}

.bottom{
    display: flex;
    flex-direction: row;
}

.select{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.select span{
    font-size: 15px;
    color: gray;
}

#month{
    width: 25%;
    height: 35px;
    border-radius: 10px;
}

button{
    background-color: aquamarine;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    width: 15%;
    height: 35px;
    border: none;
    border-radius: 10px;
}

button:hover{
    background: rgb(97, 224, 182);
}