* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: url("../images/background-5.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 1rem;
}

.container {
    border: 1px solid #000000;
    padding: 2rem;
    border-radius: 5%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
}
.container p {
    font-size: 1.3rem;
}

.container h2 {
    font-weight: bold;
    border-bottom: 5px double #000000;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 2rem;
}

.amount input{
    background: none;
    outline: none;
    border: 2px solid;
    font-size: 1rem;
    padding: 8px;
    width: 100%;
    margin: 5px 0;
}

.dropdown, .selectContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.selectContainer img { height: 50px;}
.selectContainer select {
    font-size: 1rem;
    padding: 4px;
    background-color: transparent;
    border: 2px solid;
}

.dropdown i{margin-top: 25px;}

.msg {
    text-align: center;
    font-size: 1.5rem;
    border-left: 8px solid #473BF0;
    border-right: 8px solid #473BF0;
    color: #FFF;
    background: linear-gradient(90deg, black, rgba(0, 0, 0, 0.47), black);
    margin: 0.5rem 0;
}

.container button {
    background: #473BF0;
    transition: 0.2s ease;
    color: #FFF;
    outline: none;
    border: 2px solid;
    font-size: 1rem;
    padding: 8px;
    width: 100%;
    margin: 5px 0;
}

button:hover {
  transform: scale(1.05);
}

#updatedDate {
    font-size: 0.7rem;
}
