.login-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fa;
    padding: 50px 15px;
}

.login-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #38b48b;
    box-shadow: 0 0 8px rgba(56,180,139,0.2);
}

.login-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #38b48b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #2d9a75;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: #38b48b;
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
/* ==========================
   Mobile Responsive
========================== */

@media only screen and (max-width:768px){

    .login-section{
        min-height:auto;
        padding:40px 15px;
        align-items:flex-start;
    }

    .login-card{
        width:100%;
        max-width:100%;
        padding:25px 20px;
        border-radius:15px;
        margin-top:20px;
    }

    .login-card h2{
        font-size:28px;
        margin-bottom:25px;
    }

    .form-group{
        margin-bottom:18px;
    }

    .form-group label{
        font-size:15px;
    }

    .form-group input{
        height:48px;
        font-size:15px;
        padding:0 12px;
        border-radius:8px;
    }

    .login-btn{
        height:48px;
        font-size:16px;
        border-radius:8px;
    }

    .register-link{
        margin-top:18px;
        font-size:14px;
    }
}

/* Small Mobile (320px - 480px) */

@media only screen and (max-width:480px){

    .login-section{
        padding:30px 12px;
    }

    .login-card{
        padding:20px 15px;
        border-radius:12px;
    }

    .login-card h2{
        font-size:24px;
    }

    .form-group label{
        font-size:14px;
    }

    .form-group input{
        height:45px;
        font-size:14px;
    }

    .login-btn{
        height:45px;
        font-size:15px;
    }

    .register-link{
        font-size:13px;
    }
}