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

body{
    background:#ecebdc;
    font-family:'Poppins', sans-serif;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}



/* MAIN BOX */
.signup-wrapper{

    width:950px;
    min-height:600px;

    background:#f5f1e4;

    display:flex;

    border-radius:6px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}



/* LEFT IMAGE */
.signup-image{
    width:45%;
}

.signup-image img{

    width:100%;
    height:100%;

    max-height:600px;

    object-fit:cover;
}



/* RIGHT FORM */
.signup-form-section{

    width:55%;

    padding:40px 50px;

    position:relative;
}



/* TITLE */
.signup-form-section h1{

    font-size:48px;

    color:#0f5d31;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:25px;
}

.signup-form-section h2{

    color:#14532d;

    font-size:24px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond', serif;
}



/* GOOGLE BUTTON */
.google-btn{

    border:1px solid #2e7d32;

    background:transparent;

    padding:10px 16px;

    display:flex;
    align-items:center;
    gap:10px;

    cursor:pointer;

    border-radius:4px;

    color:#444;

    font-size:13px;

    margin-bottom:25px;
}

.google-btn img{
    width:18px;
}



/* OR LINE */
.or-line{

    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:28px;
}

.or-line span{

    flex:1;
    height:1px;

    background:#2e7d32;
}

.or-line p{

    color:#14532d;

    font-weight:600;

    font-size:13px;
}



/* FORM */
.input-row{

    display:flex;
    gap:18px;

    margin-bottom:18px;
}

.input-group{
    flex:1;
}

.input-group label{

    display:block;

    font-size:12px;

    color:#2e7d32;

    margin-bottom:8px;
}

.input-group input{

    width:100%;

    border:none;
    border-bottom:1px solid #999;

    background:transparent;

    padding-bottom:8px;

    outline:none;

    font-size:13px;
}



/* BUTTON */
.signup-btn{

    width:100%;

    padding:12px;

    background:#146c2f;

    color:white;

    border:none;

    border-radius:6px;

    font-size:14px;

    margin-top:10px;

    cursor:pointer;

    transition:0.3s;
}

.signup-btn:hover{
    background:#0f5d31;
}



/* LOGIN TEXT */
.login-text{

    text-align:center;

    margin-top:18px;

    font-size:13px;

    color:#666;
}

.login-text a{

    color:#5b6cff;

    text-decoration:none;

    font-weight:500;
}



/* FOOTER */
.footer-text{

    position:absolute;

    right:35px;
    bottom:20px;

    font-size:11px;

    color:#2e7d32;
}



/* RESPONSIVE */
@media(max-width:1000px){

    .signup-wrapper{
        flex-direction:column;
    }

    .signup-image,
    .signup-form-section{
        width:100%;
    }

    .signup-image{
        height:300px;
    }

    .signup-form-section{
        padding:35px;
    }

    .signup-form-section h1{
        font-size:40px;
    }

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

}
.error-text{

    color:red;

    font-size:12px;

    display:block;

    margin-top:5px;
}
.google-btn{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    color:#000;
    font-weight:500;
    margin-top:15px;
    cursor:pointer;
}

.google-btn img{
    width:20px;
}


