﻿/* ========= Global ========= */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #f4f7f6;
    overflow: hidden;
}

/* Floating Background Elements */  
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 180, 80, 0.12);
    filter: blur(50px);
    animation: float 8s infinite ease-in-out alternate;
}

.c1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
}

.c2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -60px;
    animation-duration: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

/* ========= Login Card ========= */
.login-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    background: #ffffffd9;
    backdrop-filter: blur(12px);
    padding: 0px 35px 35px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

    .login-wrapper h2 {
        text-align: center;
        color: #0a5740;
        margin-bottom: 28px;
        font-size: 26px;
        font-weight: 600;
    }

/* ========= Input Fields ========= */
.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 14px;
        color: #1d1d1d;
        margin-bottom: 5px;
        display: block;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #dcdcdc;
        border-radius: 10px;
        outline: none;
        transition: 0.3s;
        font-size: 14px;
    }

        .form-group input:focus {
            border-color: #0fa860;
            box-shadow: 0 0 0 3px rgba(15, 168, 96, 0.2);
        }

/* ========= Button ========= */
.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0fa860;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

    .btn-login:hover {
        background: #0c8a4f;
        box-shadow: 0 8px 18px rgba(15, 168, 96, 0.3);
    }

/* ========= Footer Links ========= */
.links {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

    .links a {
        color: #0fa860;
        text-decoration: none;
    }

        .links a:hover {
            text-decoration: underline;
        }
