.main {
    position: relative;
    background: #edf0f6;
    padding: 0px 26px 10px;
    z-index: 999;
    border-radius: 36px 36px 0px 0px;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    height: 80vh;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}

.tab {
    flex: 1;
    text-align: center;
    height: 52px;
    line-height: 52px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.tab.active {
    color: #333;
    border-bottom: 2px solid #4263eb;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.9);
}

.form-control {
    width: 100%;
    height: 46px;
    background: #fff;
    border-radius: 10px;
    padding: 0px 10px;
    margin: 10px 0px;
    box-sizing: border-box;
    border: none;
}

.form-control::placeholder {
    font-size: 16px;
    color: #8f8f8f;
}

.form-control:focus {
    border-color: #4a90e2;
    outline: none;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: rgb(21, 94, 225);
    color: white;
    border: none;
    border-radius: 26px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #3a7bc8;
}

.btn-secondary {
    background-color: #666;
}

.btn-secondary:hover {
    background-color: #555;
}

.label-div {
    display: flex;
    align-items: center;

}

.sms-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sms-code input {
    flex: 1;
}

.sms-code .btn {
    width: 120px;
    margin-top: 0;
    height: fit-content;
}