@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background: linear-gradient(to bottom, #00ad00 0%, #007000 100%);
}

.container {
    text-align: center;
    background: linear-gradient(to bottom, #000000 0%, #003300 100%);
    padding: 20px;
    color: rgb(255, 255, 255);
    padding: 40px;
    border-radius: 5px;
    width: 420px;
    height: 510px;
}

.progress-container {
    width: 340px;
    display: flex;
    position: relative;
    justify-content: space-between;
    margin: 30px 0px 30px 0px;
}

h1 {
    font-weight: bold;
}

.progress-bar-back,
.progress-bar-front {
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: rgb(100, 100, 100);
    border: none;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.progress-bar-front {
    background-color: #4caf50; /* Unique progress bar color */
    transition: 0.4s linear width;
}

.step {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid rgb(100, 100, 100);
    color: #d3d3d3;
    position: relative;
}

.step.checked {
    color: #4caf50; /* Unique checked color */
    border-color: #4caf50;
    transition: all 0.4s linear;
    transition-delay: 0.3s;
}

.step.checked small {
    position: absolute;
    bottom: -20px;
    font-family: 'Times New Roman', serif; /* Change font family */
}

.btn {
    background-color: #007f00;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 165px;
    font-size: 15px;
}

.btn:hover {
    opacity: 0.9;
}

.btn:active {
    transform: scale(0.97);
}

.btn:disabled {
    background-color: #d3d3d3; /* Lighter disabled button color */
}


.form {
    text-align: left;
    margin: 20px 0px 20px 0px;
}

form {
    margin: 20px 0px 30px 0px;
}