body.lb-create-page{
    margin: 0;
    font-family: "Nunito", "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e9eef5);
    color: #243b53;
}

.lb-create-shell{
    min-height: 100vh;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.lb-create-card{
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    box-shadow: 0 18px 42px rgba(36, 59, 83, 0.08);
    border: 1px solid rgba(36, 59, 83, 0.04);
}

.lb-create-left{
    background: linear-gradient(180deg, #f8fbfb 0%, #f5faf9 100%);
    border-right: 1px solid rgba(36, 59, 83, 0.06);
}

.lb-left-inner{
    max-width: 430px;
    padding: 40px 34px 38px;
    box-sizing: border-box;
}

.lb-plan-chip{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(247, 182, 49, 0.12);
    border: 1px solid rgba(247, 182, 49, 0.72);
    color: #8b6508;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
    text-transform: none;
}

.lb-plan-chip span{
    color: #8b6508;
}

.lb-left-title{
    margin: 0 0 12px;
    font-size: 1.72rem;
    line-height: 1.16;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #243b53;
    max-width: 320px;
}

.lb-left-sub{
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: #667892;
    font-weight: 600;
    max-width: 390px;
}

.lb-mini-points{
    display: grid;
    gap: 12px;
    max-width: 390px;
    transition: transform .2s ease;
}

.lb-mini-point{
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 12px 14px;
    border-radius: 16px;

   /* background: rgba(255,255,255,0.6);
    border: 1px solid rgba(36, 59, 83, 0.05);*/
    transition: all 0.25s ease;
    
    background: #ffffff;
    border: 1px solid rgba(36, 59, 83, 0.06);
}

.lb-mini-icon{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    margin-top: 1px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(33, 172, 148, 0.12);
    font-size: 17px;
}

.lb-mini-point strong{
    display: block;
    margin-bottom: 2px;
    color: #243b53;
    line-height: 1.35;
    font-size: 0.98rem;
    font-weight: 700;
}

.lb-mini-point small{
    display: block;
    line-height: 1.55;
    font-weight: 600;
    font-size: 0.9rem;
    color: #667892;
}

.lb-create-right{
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-form-wrap{
    width: 100%;
    max-width: 500px;
    padding: 40px 46px;
    box-sizing: border-box;
}
.lb-form-title{
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #243b53;
}

.lb-form-accent{
    width: 62px;
    height: 5px;
    border-radius: 999px;
    background: #f7b631;
    margin: 14px 0 18px;
}

.lb-form-sub{
    margin: 0 0 24px;
    color: #667892;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    max-width: 410px;
}

.lb-alert.error{
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff1f0;
    border: 1px solid #efb6b2;
    color: #b43a32;
    font-size: 14px;
    font-weight: 700;
}

.lb-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb-field{
    display: flex;
    flex-direction: column;
}

.lb-label{
    margin-bottom: 8px;
    color: #243b53;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0;
}

.lb-label span{
    color: #d55d47;
}

.lb-input{
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #d7dfeb;
    background: #f4f7fb; /* slightly lighter */
    color: #243b53;
    font-size: 0.97rem;
    font-weight: 600;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.lb-input:hover{
    background: #f3f7fc;
}
.lb-mini-point:hover{
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(36, 59, 83, 0.08);
    transform: translateY(-2px);
}

.lb-input:focus{
    border-color: rgba(33, 172, 148, 0.62);
    background: #ffffff; 
    box-shadow: 0 0 0 4px rgba(33, 172, 148, 0.10);
}

.lb-input::placeholder{
    color: #8a9aae;
    font-weight: 500;
}

.lb-help{
    margin-top: 8px;
    color: #667892;
    font-size: 0.89rem;
    line-height: 1.55;
    font-weight: 600;
}

.lb-checkbox-row{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f7288;
    font-size: 0.96rem;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 2px;
}

.lb-checkbox-row input{
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: #21ac94;
    flex: 0 0 auto;
}

.lb-checkbox-row a{
    color: #21ac94;
    font-weight: 800;
    text-decoration: none;
}

.lb-checkbox-row a:hover{
    text-decoration: underline;
}

.lb-btn-primary{
    width: 100%;
    height: 56px;
    margin-top: 8px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #21ac94, #1b8f7b);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    /*box-shadow: 0 10px 22px rgba(33, 172, 148, 0.24);*/
    box-shadow: 0 12px 24px rgba(33, 172, 148, 0.26);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lb-btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(33, 172, 148, 0.30);
    filter: brightness(1.02);
}

.lb-btn-primary:active{
    transform: translateY(0);
    box-shadow: 0 8px 16px rgba(33, 172, 148, 0.22);
}

.lb-btn-primary:disabled{
    cursor: not-allowed;
    opacity: 0.86;
    transform: none;
}

.lb-bottom-text{
    margin-top: 12px;
    text-align: center;
    color: #7b8ca0;
    font-size: 0.96rem;
    font-weight: 600;
}

.lb-bottom-text a{
    color: #21ac94;
    font-weight: 800;
    text-decoration: none;
}

.lb-bottom-text a:hover{
    text-decoration: underline;
}

@media (max-width: 1100px){
    .lb-create-card{
        grid-template-columns: 0.9fr 1.1fr;
    }

    .lb-left-inner{
        padding: 34px 28px;
    }

    .lb-form-wrap{
        padding: 36px 30px;
        padding-bottom: 34px;
    }

    .lb-left-title,
    .lb-form-title{
        font-size: 1.58rem;
    }
}

@media (max-width: 900px){
   
    
    .lb-create-shell{
        padding: 14px;
        align-items: stretch;
    }

    .lb-create-card{
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .lb-create-left{
        border-right: 0;
        border-bottom: 1px solid rgba(36, 59, 83, 0.06);
         order: 2;
    }
    .lb-create-right{
        order: 1;
    }

    .lb-left-title{
        max-width: 100%;
    }

    .lb-left-sub,
    .lb-mini-points{
        max-width: 100%;
    }

    .lb-form-wrap{
        max-width: 100%;
        padding: 28px 22px 26px;
    }
     .lb-mini-points{
        gap: 8px;
    }

    .lb-mini-point{
        padding: 6px 0;
    }

    .lb-left-sub{
        margin-bottom: 14px;
    }

    .lb-left-inner{
        padding-bottom: 12px;
    }
}

@media (max-width: 640px){
    .lb-create-shell{
        padding: 10px;
    }

    .lb-create-card{
        border-radius: 20px;
    }

    .lb-plan-chip{
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .lb-left-title,
    .lb-form-title{
        font-size: 1.42rem;
        line-height: 1.18;
    }

    .lb-left-sub,
    .lb-form-sub{
        font-size: 0.94rem;
    }

    .lb-mini-point{
        gap: 10px;
    }

    .lb-mini-icon{
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 11px;
    }

    .lb-mini-point strong{
        font-size: 0.94rem;
    }

    .lb-mini-point small{
        font-size: 0.86rem;
    }

    .lb-input{
        height: 52px;
        border-radius: 14px;
        font-size: 0.95rem;
    }

    .lb-btn-primary{
        height: 54px;
        border-radius: 14px;
        font-size: 0.98rem;
    }

    .lb-checkbox-row,
    .lb-bottom-text{
        font-size: 0.92rem;
    }
}