 .navbar, .footer, header, footer{
     display:none !important;
    }

.jrn-input{
    width:100%;
    height:50px;
    border:1px solid #ccc;
    border-radius:8px;
    padding:0 15px;
    margin-bottom:15px;
    outline:none;
}

.jrn-links{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin:20px 0;
}

.jrn-links a{
    color:#20db55;
    text-decoration:none;
    font-weight:600;
}

.jrn-signup-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 25px;
    border-radius:8px;
    background:#20db55;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.jrn-login-btn{
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-weight:600;
}

.jrn-tabs{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-bottom:25px;
}

    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.jrn-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#dff7e4;
    padding:40px;
}

.jrn-card{
    width:1100px;
    background:#fff;
    border-radius:30px;
    display:flex;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.jrn-left{
    width:48%;
    background:#f4f1f1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.jrn-left img{
    width:100%;
    max-width:420px;
}

.jrn-right{
    width:52%;
    padding:35px;
}

.jrn-tabs{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-bottom:25px;
}

.jrn-login-btn,
.jrn-signup-btn{
    padding:10px 28px;
    border-radius:8px;
    border:1px solid #ddd;
    cursor:pointer;
    font-weight:600;
    background:#fff;
}

.jrn-signup-btn{
    background:#20db55;
    color:#fff;
    border:none;
}

.jrn-title{
    font-size:32px;
    margin-bottom:5px;
    color:#222;
}

.jrn-subtitle{
    color:#777;
    margin-bottom:20px;
}

.jrn-social{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.jrn-social button{
    flex:1;
    height:48px;
    border:1px solid #ccc;
    background:#fff;
    border-radius:8px;
    font-size:20px;
    cursor:pointer;
}

.jrn-divider{
    display:block;
    text-align:center;
    margin:15px 0;
    color:#888;
}

.jrn-row{
    display:flex;
    gap:15px;
    margin-bottom:5px;
}

.jrn-row input,
.jrn-right>input{
    width:100%;
    height:50px;
    border:1px solid #ccc;
    border-radius:8px;
    padding:0 15px;
    margin-bottom:15px;
    outline:none;
}

.jrn-password-box{
    position:relative;
    margin-bottom:15px;
}

.jrn-password-box input{
    width:100%;
    height:50px;
    border:1px solid #ccc;
    border-radius:8px;
    padding:0 45px 0 15px;
}

.jrn-password-box span{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
}

.jrn-check{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#666;
    margin-bottom:25px;
}

.jrn-check a{
    color:#20db55;
    text-decoration:none;
}

.jrn-start-btn{
    width:100%;
    height:55px;
    background:linear-gradient(90deg,#99bced,#99f8cf,#ffd6c7);
    color:#000;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    font-weight:600;
}

.jrn-start-btn:hover{
    background:#16bf49;
}

@media(max-width:900px){

    .jrn-card{
        flex-direction:column;
    }

    .jrn-left,
    .jrn-right{
        width:100%;
    }

    .jrn-row{
        flex-direction:column;
    }
}












