.form-container {
    background-color: white;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.booking-container {
    display: flex;
    justify-content: space-around;
    max-width: 100%;
    padding: 50px;
    padding-top: 100px;
    align-items: center;
}

.booking-intro{
    color: white;
    max-width: 550px;
}

form {
    display: flex;
    flex-direction: column;
}

form > div {
    display: none;
    transition: opacity 0.5s ease;
}

form > div.active {
    display: block;
    opacity: 1;
}

label {
    margin: 10px 0 5px;
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% - 22px);
}

.msg input, textarea {
    min-height: 170px;
    margin-top: 10px;
}
button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
}

button.next-btn {
    background-color: orange;
    color: black;
}

button.submit-btn {
    background-color: orange;
    color: black;
}

.success-message {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


span.error-message {
    position: relative;
    display: none;
    color: red;
    font-size: 12px;
    text-transform: uppercase;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-step.active h2 {
    margin: 15px 0px 30px 0;
    color: black;
}
.form-step.active {
    position: relative;
}
.form-step.active p {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #505241;
    padding: 10px;
    border-radius: 30px;
}
.form-step.active .icon{
    width: 120px;
    filter: grayscale(1);
}
button {
    text-transform: none;
    min-width: 110px;
}