@font-face {
    font-family: 'Stolz';
    src: url('/static/Stolzl-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
body {
    overflow: hidden;
    font-family: 'Stolz', sans-serif;
    background-color: #1a1a1a;
    margin: 0;
    color: #e0e0e0;
    padding: 20px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 12px;
    margin: 20px;
}
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #3f51b5;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 12px;
    color: #b4b4b4;
}
input {
    width: 100%;
    padding: 16px 12px;
    border: none;
    border-radius: 16px;
    background-color: #2c2c2c;
    box-sizing: border-box;
    color: #e0e0e0;
    font-family: 'Stolz', sans-serif;
    font-size: 16px;
}
input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(194, 194, 194, 0.2);
}
button {
    font-family: 'Stolz', sans-serif;
    width: 100%;
    padding: 14px;
    margin-top: 30px;
    background-color: #1a1a1a;
    border: 1px solid #e0e0e0;
    color: white;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
button:hover {
    background-color: #222222;
}
.error {
    color: #e53935;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.back-button {
    text-align: center;
    margin-top: 20px;
}
.back-button a {
    color: #3f51b5;
    text-decoration: none;
}
.loading {
    display: none;
    text-align: center;
    padding-top: 50px;
    margin-top: 20px;
}
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6d6d6d;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    margin-bottom: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.progress-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.progress-top {
    display: flex;
    align-items: center;
    width: 80%;
}
.progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    border-radius: 50%;
}
.step-circle {
    width: 20px;
    height: 20px;
    background-color: #535353;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.progress-line {
    flex: 1;
    height: 2px;
    background-color: #535353;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-top: 8px;
}
.step-label {
    font-size: 12px;
    color: #b4b4b4;
    text-align: center;
}
.progress-step.done .step-circle {
    background-color: #eeeeee;
    border-radius: 50%;
    color: #000000;
}
.progress-step.done .step-circle::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/static/checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}
.checkmark {
    content: "";
    display: block;
    color: white;
    width: 120px;
    height: 120px;
    background-image: url(/static/checkmark-green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}
.progress-step.current .step-circle {
    outline: 3px solid #ffffff;
    outline-offset: -3px;
}
.product-name {
    margin-bottom: 20px;
}
.product-name span {
    font-size: 12px;
    color: #b4b4b4;
}
.product-name-span {
    font-size: 12px;
    color: #b4b4b4;
}
.product-name p {
    margin: 5px 0 0;
    font-size: 16px;
    font-weight: 500;
}
.product-price p {
    margin: 0px;
    font-size: 40px;
}
#summary-container {
    padding-top: 5px;
}
.sub-container {
    background-color: #2b272a;
    border: none;
    border-radius: 16px;
}
#summary-container h2 {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 15px;
}

.summary-item:not(:last-child) {
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
}
.summary-item {
    padding: 15px 15px;
}
.summary-item span {
    display: block;
    font-size: 12px;
    color: #888;
}
.summary-item p {
    margin: 6px 0 0 0;
    font-size: 16px;
    font-weight: 100;
}
.payment-link-container a {
    color: aquamarine
}
.final-header {
    font-size: 30px;
}