/* 
.register-container {
    width: 800px;
    height: 520px;
    background: #fff;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 160px auto 60px auto;
    border-radius: 12px;
}

.register-left {
    width: 40%;
    background: linear-gradient(180deg, #0f3b3e, #0f3b3e78);
    color: #fff;
    padding: 40px 30px;
    position: relative;

}

.register-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.register-left p {
    font-size: 16px;
    opacity: .9;
    line-height: 1.6;
}

.illustration {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: center;
}

.illustration img {

    max-width: 100%;
    width: 220px;
    border-radius: 8px;
    height: 213px;
    object-fit: cover;
}


.register-right {
    width: 60%;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 28px;
}

.form-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #0f3b3e69;
    padding: 10px 0;
    font-size: 15px;
    outline: none;
}

.terms {
    font-size: 12px;
    color: #878787;
    margin-bottom: 20px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
}
.continue-btn {
    width: 100%;
    background: #fb641b;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.continue-btn:hover {
    background: #e85a14;
}

.login-link {
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.login-link a {
    text-decoration: none;
    color: var(--color-primary-800);
   font-family: 'roboto-medium';
} */