body {
    padding: 0px;
    margin: 0px;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: figtree;
    width: 100%;
}

.container {
    background-color: #1F3A60;
    color: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
}

.input {
    width: 100%;
    font-size: 20px;
    height: 30px;
}

.payment {
    font-weight: 600;
    font-size: 20px;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: bolder;
    background-color: #FF7043;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
    font-family: figtree;
}

button:hover {
    background-color: #f39173;
}

.error {
    color: #D32F2F;
    font-weight: bold;
    font-family: figtree;
}

.header {
    text-align: center;

}