﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background:#f4f6f9;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
}

.card{
    width:100%;
    max-width:650px;
    background:#ffffff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.logo{
          width: 105px;      /* thoda balanced */
    display:block;
    margin:0 auto 15px auto;
}

h2{
    text-align:center;
    color:#1f6b1f;
    margin-bottom:30px;
    font-weight:600;
}

.row{
    display:flex;
    gap:20px;
    margin-bottom:18px;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

label{
    font-size:14px;
    margin-bottom:6px;
    font-weight:500;
    color:#333;
}

/* INPUT + SELECT SAME STYLE */
input,
select{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #dcdcdc;
    font-size:14px;
    height:44px;                 /* equal height */
    transition:all 0.3s ease;
    background:#fff;
}

/* Remove default ugly select arrow (optional modern look) */
select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor:pointer;
}

/* Focus effect */
input:focus,
select:focus{
    border-color:#1f6b1f;
    box-shadow:0 0 0 3px rgba(31,107,31,0.1);
    outline:none;
}

/* Button */
.btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:8px;
    background:#1f6b1f;
    color:#fff;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    margin-top:10px;
    transition:all 0.3s ease;
}

.btn:hover{
    background:#174d17;
    transform:translateY(-2px);
}

/* Login link */
.login-link{
    text-align:center;
    margin-top:18px;
    font-size:14px;
}

.login-link a{
    text-decoration:none;
    color:#ff7a00;
    font-weight:500;
}

.login-link a:hover{
    text-decoration:underline;
}

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

    body{
        align-items:flex-start;
        display: block;
    }

    .row{
        flex-direction:column;
        gap:0;
    }

    .card{
        padding:25px;
    }


}
