* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f4f4;
}

.container {
    display: flex;
    height: 100%;
}

.left {
    width: 40%;
    background: #a09f9f;
    padding: 60px;
    position: relative;
    background-color: rgb(181, 187, 171);
}

.logo {
    color: #0616f6;
    font-size: 30px;
}

.left-side {
    margin-top: 150px;
}

.left h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.left p {
    color: #191111;
}

.right {
    width: 60%;
    background: white;
    border-top-left-radius: 40px;
    padding: 40px;
    position: relative;
}

.top-bar {
    text-align: right;
    margin-bottom: 2px;
}

.top-bar a {
    text-decoration: none;
    color: #6ac57d;
}

.form-area {
    max-width: 700px;
    margin: auto;
}

.form-area h2 {
    margin-bottom: 10px;
}

.sub {
    color: #666666;
    margin-bottom: 25px;
}

.sub a {
    color: #10cd0d;
    text-decoration: none;
}

.input-row {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.input-box {
    flex: 1;
}

.input-box label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}
.input-box select,
.input-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background-color:rgb(174, 184, 184)
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tags span {
    padding: 10px 18px;
    border: 1px solid #ccc;
    border-radius: 25px;
    cursor: pointer;
    background: #fff;
}

.tags span:hover {
    border-color: #1a7f37;
}

.tags .active {
    background: #dff2e1;
    border-color: #0ad160;
}

.bottom {
    margin-top: 50px;
    text-align: right;
}

.continue-btn {
    background: #2f5724;
    color: rgb(24, 237, 0);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.continue-btn:hover {
    background: #16692e;
    border: solid 5px blue;
}