.donation-page {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1593113630400-ea4288922497?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    opacity: 0;
    width: 100%;
    color: rgba(252, 162, 17, 0.75);
    text-align: center;
}

#later-btn {
    background-color: green;
    color: white;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: bold;
    align-self: right;
    width: 100px;
}

#btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#done-btn {
    background-color: green;
    color: white;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: bold;
    margin: 0;
    width: 100px;
}

.discription {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3 {
    text-align: center;
    color: white;
}

.form {
    opacity: 1;
    height: 80vh;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2rem 5rem 0 rgba(252, 162, 17, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    z-index: 10;
}

.form>* {
    width: 80%;
}

input {
    height: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
}

span {
    color: rgba(252, 162, 17);
}

@media only screen and (max-width: 600px) {
    .form {
        width: 80%;
    }
}