@keyframes borderColor {
    0% { background-color: rgb(188, 208, 255); }
    25% { background-color: rgb(178, 241, 255); }
    50% { background-color: rgb(168, 231, 255);  }
    75% { background-color: rgb(178, 241, 255); }
    100% { background-color: rgb(188, 208, 255);  }
}

#progress-background {
    animation: borderColor 2s cubic-bezier(0, -0.4, 1, 1.35) infinite;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh; /* Full viewport height */
}

.sample-form {
    width: 50%;
    max-width: 600px;
    padding: 20px;
    background-color: #fefefe; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
}

.form-buttons > *:first-child {
    margin-right: auto;
}

.form-buttons > *:nth-last-child(2) {
    margin-right: 10px;
}

.separator {
    margin-top: 0px;
}

.separator-label {
    font-weight: bold;
}