/* =====================================================
REGISTRIERUNG – JUSTLYKKE
Datei: registrierung.css
===================================================== */

body{
margin:0;
padding:0;
background:#FAF5F3;
font-family:"Inter",sans-serif;
color:#444;
}

*{
box-sizing:border-box;
}

.registration-page{
width:100%;
}

/* =====================================================
HERO
===================================================== */

.hero-logo{
    margin-bottom:40px;
}

.hero-logo img{
    height:120px;
    width:auto;
    display:block;
}


.registration-hero{


max-width:1400px;
margin:0 auto;

display:grid;
grid-template-columns:1fr 1fr;

align-items:center;

padding:50px 40px 20px;


}

.hero-content h1{


font-family:"Playfair Display",serif;

font-size:76px;

line-height:1.05;

color:#3B4335;

margin:0 0 20px;


}

.hero-content p{


font-size:19px;

line-height:1.7;

color:#444;

max-width:600px;


}



.hero-image img{


width:100%;

border-radius:30px;

display:block;


}


.hero-title-row h1{
    margin:0;
}



.hero-title-row{

    display:flex;

    align-items:center;

    gap:10px;
}

.hero-heart{

    width:70px;

    height:auto;

    flex-shrink:0;

    margin-top:55px;
}

/* =====================================================
INFO LEISTE
===================================================== */

.info-bar{

    max-width:1050px;

    padding:25px 40px;

    margin:0 auto 35px;
    transform:translateX(-80px);


    background:#FCF9F8;

    border:1px solid #EEE7E2;

    border-radius:20px;

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    align-items:center;

    box-shadow:0 5px 20px rgba(0,0,0,.03);
}

.info-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:0 25px;
}

.info-item:not(:last-child){

    border-right:1px solid #EAE4DF;
}

.info-item img{

    width:44px;

    height:44px;

    object-fit:contain;
}

.info-item span{

    font-size:17px;

    line-height:1.4;

    font-weight:500;

    color:#444;
}

/* =====================================================
FORMULAR BOX
===================================================== */

.role-selection{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.role-card{
    height:60px;
    border:1px solid #DDD;
    border-radius:12px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    color:#444;
    transition:.25s;
}

.role-card:hover{
    border-color:#7F8D73;
    background:#F9F9F7;
}

.role-card input{
    width:18px;
    height:18px;
    accent-color:#7F8D73;
}



.registration-wrapper{

    max-width:1200px;

    margin:0 auto 80px;

    background:#fff;

    border-radius:30px;

    padding:25px 50px 50px 50px;

    border:1px solid #EEE7E2;

    box-shadow:0 10px 40px rgba(0,0,0,.04);
}

/* =====================================================
TARIFE
===================================================== */

.plan-title{


text-align:center;

color:#6E7B5B;

font-size:26px;

font-weight:600;

margin-bottom:40px;


}

.plan-grid{


display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:50px;


}


.plan-card{

    border-radius:24px;

    border:2px solid #DCE2D3;

    background:#F9F9F7;

    padding:40px;

    text-align:center;

    position:relative;

    cursor:pointer;

    transition:.3s;
}


.plan-radio{

    position:absolute;

    top:30px;

    right:30px;

    width:32px;

    height:32px;

    cursor:pointer;

    accent-color:#7F8D73;
}

.plan-card.family{

    background:#FDF9F8;

    border:2px solid #F0D2CE;
}

.plan-icon{


width:100px;

margin:0 auto 20px;


}

.plan-name{

    font-size:34px;

    font-weight:600;

    margin-bottom:15px;

    color:#6E7B5B;
}

.plan-family .plan-name{

    color:#E39B96;
}

.plan-price{


font-size:64px;

font-weight:700;

color:#6E7B5B;


}

.plan-family .plan-price{


color:#E39B96;


}

.plan-price small{


font-size:26px;

font-weight:500;


}

.plan-year{


margin-top:10px;

font-size:24px;

color:#666;


}

.plan-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:20px;

    padding:14px 24px;

    border-radius:50px;

    background:#EEF3E7;

    color:#6E7B5B;

    font-weight:600;

    font-size:16px;
}

.plan-family .plan-badge{

    background:#FCE8E6;

    color:#E39B96;
}

.plan-badge img{

    width:26px;

    height:26px;

    display:block;
}


/* =====================================================
FORMULAR
===================================================== */

.form-box{


border:1px solid #EEE7E2;

border-radius:24px;

padding:40px;


}

.form-title{


font-size:30px;

font-weight:600;

color:#6E7B5B;

margin-bottom:30px;


}

.form-grid{


display:grid;

grid-template-columns:1fr 1fr;

gap:25px;


}

.form-group{


display:flex;

flex-direction:column;


}

.form-group.full{


grid-column:1 / -1;


}

.form-group label{


margin-bottom:10px;

font-size:16px;

font-weight:600;


}

.form-group input{

    height:60px;

    width:100%;

    border:1px solid #DDD;

    border-radius:12px;

    padding:0 18px 0 50px;

    font-size:16px;

    background:#fff;
}

.form-group select{

    width:100%;

    height:60px;

    border:1px solid #DDD;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;

    font-family:"Inter",sans-serif;

    color:#444;

    background:#fff;

    cursor:pointer;
}

.input-wrapper{

    position:relative;

    display:flex;

    align-items:center;
}

.input-wrapper img{

    position:absolute;

    left:18px;

    width:18px;

    height:18px;

    object-fit:contain;

    opacity:.65;

    pointer-events:none;
}

.helper-text{


margin-top:10px;

font-size:14px;

color:#888;


}

/* =====================================================
CHECKBOXEN
===================================================== */

.checkbox-group{


margin-top:30px;


}

.checkbox-item{


display:flex;

align-items:flex-start;

gap:12px;

margin-bottom:18px;


}

.checkbox-item input{


margin-top:3px;


}

.checkbox-item a{


color:#E39B96;

text-decoration:none;


}

/* =====================================================
BUTTON
===================================================== */

.register-btn{

    width:100%;
    height:80px;

    border:none;
    border-radius:18px;

    background:#7F8D73;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 28px;

    font-size:28px;

    font-weight:600;

    cursor:pointer;

    margin-top:35px;

    transition:.3s;
}

.register-btn span{

    flex:1;

    text-align:center;
}

.btn-icon-left{

    width:44px;

    height:44px;

    object-fit:contain;

    flex-shrink:0;
}

.btn-icon-right{

    width:44px;

    height:44px;

    object-fit:contain;

    flex-shrink:0;
}

.register-btn:hover{


background:#6F7C65;


}

/* =====================================================
INFO BOX
===================================================== */

.trust-box{

    margin-top:30px;

    background:#F8F5F1;

    border-radius:24px;

    padding:30px 35px;

    display:flex;

    align-items:center;

    gap:30px;
}

.trust-icon-left{

    width:95px;

    flex-shrink:0;
}

.trust-icon-left img{

    width:100%;

    display:block;
}

.trust-icon-right{

    width:70px;

    flex-shrink:0;
}

.trust-icon-right img{

    width:100%;

    display:block;
}

.trust-content{

    flex:1;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.trust-column:first-child{

    border-right:1px solid #DDD6CF;

    padding-right:40px;
}

.trust-column h4{

    margin:0 0 15px;

    color:#6E7B5B;

    font-size:18px;

    font-weight:600;
}

.trust-column ul{

    margin:0;

    padding-left:20px;
}

.trust-column li{

    margin-bottom:10px;

    line-height:1.7;
}

.trust-box h4{


margin:0 0 15px;

color:#6E7B5B;

font-size:24px;


}

.trust-box ul{


margin:0;
padding-left:20px;


}

.trust-box li{


margin-bottom:10px;

line-height:1.6;


}

/* =====================================================
LOGIN HINWEIS
===================================================== */

.login-link{


text-align:center;

margin-top:35px;

font-size:18px;


}

.login-link a{


color:#E39B96;

text-decoration:none;

font-weight:600;


}


/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1200px){
    .registration-hero{
        padding:38px 28px 18px;
    }

    .info-bar{
        transform:none;
        width:calc(100% - 40px);
    }

    .registration-wrapper{
        width:calc(100% - 40px);
    }
}

@media(max-width:900px){
    .registration-hero{
        grid-template-columns:1fr;
        gap:22px;
        padding:28px 20px 12px;
        text-align:center;
    }

    .hero-logo{
        margin-bottom:22px;
    }

    .hero-logo img{
        height:88px;
        margin:0 auto;
    }

    .hero-title-row{
        justify-content:center;
        align-items:flex-start;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        max-width:none;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-heart{
        width:48px;
        margin-top:30px;
    }

    .hero-image img{
        max-height:360px;
        object-fit:cover;
    }

    .info-bar{
        grid-template-columns:1fr;
        gap:0;
        padding:18px 22px;
        margin-bottom:24px;
    }

    .info-item{
        border-right:none !important;
        border-bottom:1px solid #EAE4DF;
        padding:14px 0;
    }

    .info-item:last-child{
        border-bottom:none;
    }

    .registration-wrapper{
        padding:24px;
        margin-bottom:50px;
        border-radius:24px;
    }

    .plan-grid,
    .form-grid{
        grid-template-columns:1fr;
    }

    .plan-card{
        padding:30px 24px;
    }

    .trust-box{
        flex-direction:column;
        text-align:left;
        padding:24px;
    }

    .trust-content{
        grid-template-columns:1fr;
        gap:20px;
    }

    .trust-column:first-child{
        border-right:none;
        border-bottom:1px solid #DDD6CF;
        padding-right:0;
        padding-bottom:20px;
    }

    .trust-icon-left{
        width:72px;
    }

    .trust-icon-right{
        display:none;
    }

    .role-selection{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .registration-hero{
        padding:22px 14px 10px;
    }

    .hero-logo img{
        height:76px;
    }

    .hero-content h1{
        font-size:40px;
        line-height:1.08;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.55;
    }

    .hero-heart{
        width:38px;
        margin-top:22px;
    }

    .hero-image img{
        border-radius:22px;
        max-height:260px;
    }

    .info-bar,
    .registration-wrapper{
        width:calc(100% - 24px);
    }

    .info-bar{
        padding:14px 18px;
        border-radius:18px;
    }

    .info-item{
        gap:14px;
    }

    .info-item img{
        width:34px;
        height:34px;
    }

    .info-item span{
        font-size:15px;
    }

    .registration-wrapper{
        padding:18px;
        border-radius:22px;
    }

    .plan-title{
        font-size:22px;
        margin-bottom:24px;
    }

    .plan-grid{
        gap:18px;
        margin-bottom:28px;
    }

    .plan-card{
        padding:26px 18px;
        border-radius:20px;
    }

    .plan-radio{
        top:18px;
        right:18px;
        width:26px;
        height:26px;
    }

    .plan-icon{
        width:74px;
    }

    .plan-name{
        font-size:27px;
    }

    .plan-price{
        font-size:42px;
    }

    .plan-price small{
        font-size:18px;
    }

    .plan-year{
        font-size:18px;
    }

    .plan-badge{
        padding:11px 16px;
        font-size:14px;
    }

    .form-box{
        padding:22px 16px;
        border-radius:20px;
    }

    .form-title{
        font-size:24px;
        margin-bottom:22px;
    }

    .form-grid{
        gap:18px;
    }

    .form-group input,
    .form-group select{
        height:54px;
        font-size:16px;
    }

    .checkbox-item{
        gap:10px;
        font-size:15px;
    }

    .register-btn{
        height:64px;
        padding:0 18px;
        font-size:20px;
        border-radius:16px;
    }

    .btn-icon-left,
    .btn-icon-right{
        width:30px;
        height:30px;
    }

    .trust-box{
        margin-top:22px;
        padding:20px 18px;
        border-radius:20px;
        gap:18px;
    }

    .trust-box h4,
    .trust-column h4{
        font-size:18px;
    }

    .trust-box li{
        font-size:15px;
    }

    .login-link{
        font-size:16px;
    }
}

@media(max-width:420px){
    .hero-content h1{
        font-size:34px;
    }

    .hero-heart{
        display:none;
    }

    .plan-price{
        font-size:36px;
    }

    .register-btn{
        font-size:18px;
    }

    .btn-icon-left{
        display:none;
    }
}

.form-message{
    margin-bottom:25px;
    padding:18px 22px;
    border-radius:14px;
    font-size:16px;
    line-height:1.5;
}

.form-message p{
    margin:0 0 8px;
}

.form-message p:last-child{
    margin-bottom:0;
}

.error-message{
    background:#FCE8E6;
    color:#9E3D38;
    border:1px solid #F0D2CE;
}

.success-message{
    background:#EEF3E7;
    color:#4F6146;
    border:1px solid #DCE2D3;
}
