.donation-popup-active {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.41);
}

.donation-popup-active form {
    position: fixed;
    border-radius: 15px;
    background-color: #ddd;
    padding: 2rem 1rem 2rem 1rem;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.37);
}

form .donation-head {
    padding: 10px 5px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.37);
}

form  .input-group {
    display: flex;
    margin-top: 0.5rem;
    flex-direction: column;
}

form  .input-group input {
    outline: none;
    border-radius: 5px;
    padding: 3px 2px;
    border: solid grey 1px;
    background-color: transparent;
}

form .input-group input:focus {
    outline: solid #258F7B 1px;
}

form .btn-group {
    gap: 0.2rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

form .btn-group button {
    color: white;
    padding: 5px 3px;
    font-size: smaller;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: solid #258F7B 1px;
}

form .btn-group button:hover { box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.209); }
form .btn-group button:nth-child(1) {border-radius: 5px 0 0 5px; background-color: black;}
form .btn-group button:nth-child(2) {border-radius: 0 5px 5px 0; background-color: #258F7B;}

.donated {
    display: flex;
    align-items: center;
    justify-content: left;
}

.donated label {
    color: white;
    padding: 5px 3px;
    border-radius: 5px 0 0 5px;
    background-color: #258F7B;
}

.donated input {
    border: none;
    outline: none;
    padding: 5px 3px;
    color: white;
    border-radius: 0 5px 5px 0;
    background-color: black;
}

#donation-form {
    display: none;
}

.popup-error {
    color: red;
    padding: 0;
    font-size: smaller;
}