

form {
    display: flex;
    flex-direction: column;
}

input {
    margin: 10px 0;
    padding: 10px;
    border: unset;
    border-bottom: 2px solid #e3e3e3;
    outline: none;
}

button {
    padding: 10px;
    background: #ff8b00;
    border: unset;
    cursor: pointer;
}
.save {
    top: 50%;
    right: 10%;
    position: fixed;
    width: 10%;
    z-index: 9999;
    padding: 10px;
    background: #ff8b00;
    border: unset;
    cursor: pointer;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: white;
}

.msg {
    border: 2px solid #ffa908;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    form {
        display: flex;
        flex-direction: column;

    }
        .save {
    top: 1%;
    right: 30%;
    position: fixed;
    width: 20%;
    z-index: 9999;
    padding: 10px;
    background: #ff8b00;
    border: unset;
    cursor: pointer;
}
}