@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #909290;
}

.container {
    position: relative;
    max-width: 2300px;
    width: 100%;
    border-radius: 6px;
    padding: 25px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.container header {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: #333;
}

.container header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #909290;
}

.container .buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.buttons .backBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #909290;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons .backBtn:hover {
    background-color: #d54b16;
}

.form {
    margin-top: 20px;
}

.form .details {
    margin-bottom: 30px;
}

.details .title {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: calc(100% / 6 - 10px);
}

.input-field label {
    font-weight: 500;
    margin-bottom: 5px;
}

.input-field select,
.input-field input {
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.input-field select:focus,
.input-field input:focus {
    border-color: #909290;
}

.nextBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #909290;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nextBtn:hover {
    background-color: #d54b16;
}

.btnText {
    font-size: 16px;
    margin-right: 5px;
}

.footer {
    text-align: center;
    margin-top: 20px;
}

/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
