﻿/* ===============================
   LinkGuru Login Page
   =============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Segoe UI',Tahoma,sans-serif;
    background:#F6F1FF;
    overflow-x:hidden;

}

a{
    text-decoration:none;
}

.page{

    display:flex;
    min-height:100vh;

}

/******************************
LEFT PANEL
******************************/

.leftPanel{

    width:55%;
    padding:45px 60px;
    background:
    radial-gradient(circle at top left,#ffffff 0,#F6F0FF 40%,#F1E8FF 100%);
    position:relative;
    overflow:hidden;

}

.leftPanel:before{

    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(123,63,228,.08);
    right:-200px;
    top:-150px;

}

.leftPanel:after{

    content:'';
    position:absolute;
    width:650px;
    height:250px;
    left:-80px;
    bottom:-120px;
    border-radius:60%;
    background:linear-gradient(90deg,#D9C5FF,#F5EFFF);

}

.logo{

    width:230px;

}

.hero{

    margin-top:35px;
    position:relative;
    z-index:10;

}

.tagline{

    color:#6F3EE8;
    font-size:24px;
    font-weight:600;

}

.hero h1{

    margin-top:20px;
    font-size:64px;
    line-height:70px;
    color:#162447;
    font-weight:700;

}

.hero h1 span{

    color:#E1267B;

}

.hero p{

    margin-top:25px;
    color:#555;
    width:78%;
    font-size:20px;
    line-height:34px;

}

/******************************
SCREENSHOTS
******************************/

.screens{

    margin-top:40px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:30px;
    position:relative;
    z-index:5;

}

.treeScreen{

    width:330px;
    border-radius:18px;
    /*box-shadow:0 25px 60px rgba(0,0,0,.15);*/

}

.mobileScreen{

    width:220px;
    margin-bottom:20px;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.2));

}

/******************************
FEATURES
******************************/

.featureRow{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    position:relative;
    z-index:5;

}

.featureCard{

    background:#fff;

    border-radius:16px;

    padding:18px;

    display:flex;

    gap:12px;

    align-items:center;

    box-shadow:0 12px 25px rgba(123,63,228,.08);

    transition:.3s;

}

.featureCard:hover{

    transform:translateY(-5px);

}

.icon{

    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#7B3FE4,#C64AD9);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;

}

.featureCard h4{

    font-size:17px;
    color:#222;
    white-space:nowrap;

}

.featureCard span{

    color:#777;
    font-size:13px;

}

/******************************
RIGHT PANEL
******************************/

.rightPanel{

    width:45%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;

}

.loginCard{

    width:520px;
    background:white;
    border-radius:28px;
    padding:45px;
    box-shadow:0 30px 70px rgba(102,51,204,.15);

}

.loginLogo{

    width:220px;
    display:block;
    margin:auto;

}

.loginCard h2{

    text-align:center;
    margin-top:25px;
    color:#162447;
    font-size:44px;

}

.loginCard p{

    text-align:center;
    color:#777;
    margin:12px 0 30px;

}

.socialButtons{

    display:flex;
    gap:15px;

}

.socialButtons button{

    flex:1;
    height:52px;
    border-radius:12px;
    border:1px solid #E8E8E8;
    background:white;
    cursor:pointer;
    font-size:15px;

}

.divider{

    margin:25px 0;
    text-align:center;
    color:#888;
    position:relative;

}

.divider:before,
.divider:after{

    content:'';
    width:36%;
    height:1px;
    background:#DDD;
    position:absolute;
    top:10px;

}

.divider:before{

    left:0;

}

.divider:after{

    right:0;

}

/******************************
TEXTBOX
******************************/

.textbox{

    display:flex;
    align-items:center;
    gap:12px;
    border:2px solid #E9DFFF;
    border-radius:14px;
    padding:15px 18px;
    margin-bottom:18px;

}

.textbox input{

    border:none;
    outline:none;
    width:100%;
    font-size:17px;
    background:none;

}

.textbox i:last-child{

    cursor:pointer;
    color:#777;

}

/******************************
OPTIONS
******************************/

.options{

    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    font-size:15px;

}

.options a{

    color:#6F3EE8;

}

/******************************
BUTTON
******************************/

.loginButton{

    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#6E2DE5,#8D58F6,#E1267B);
    color:white;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.loginButton:hover{

    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(123,63,228,.25);

}

.registerBox{

    margin-top:28px;
    background:#F7F1FF;
    border-radius:16px;
    text-align:center;
    padding:22px;

}

.registerBox small{

    display:block;
    color:#666;
    margin-bottom:10px;

}

.registerBox a{

    color:#6F3EE8;
    font-weight:700;
    font-size:16px;

}

.footer{

    margin-top:28px;
    text-align:center;
    font-size:13px;
    color:#888;
    line-height:24px;

}

.footer a{

    color:#777;

}

/******************************
RESPONSIVE
******************************/

@media(max-width:1200px){

.featureRow{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:48px;
line-height:56px;

}

.treeScreen{

width:260px;

}

.mobileScreen{

width:170px;

}

}

@media(max-width:991px){

.page{

flex-direction:column;

}

.leftPanel,
.rightPanel{

width:100%;

}

.leftPanel{

padding:35px;

}

.screens{

flex-direction:column;
align-items:center;

}

.loginCard{

width:100%;

}

.hero p{

width:100%;

}

}

@media(max-width:600px){

.hero h1{

font-size:38px;
line-height:44px;

}

.featureRow{

grid-template-columns:1fr;

}

.logo{

width:180px;

}

.loginLogo{

width:180px;

}

.loginCard{

padding:28px;

}

.socialButtons{

flex-direction:column;

}

}