* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
    }

body {
        background-color: #e7f3e7;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

.login-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

.login-box {
        background-color: #f3faf3;
        padding: 2.5rem 3rem;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        text-align: center;
        width: 350px;
    }

.icon img {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

h2 {
        color: #1a3e1a;
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

.subtext {
        color: #4a4a4a;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

label {
        display: block;
        text-align: left;
        margin-top: 0.8rem;
        color: #1a3e1a;
        font-weight: 500;
        font-size: 0.9rem;
    }

input {
        width: 100%;
        padding: 0.6rem;
        margin-top: 0.3rem;
        border: 1px solid #c9e0c9;
        border-radius: 5px;
        background-color: #f1f9f1;
        font-size: 0.95rem;
    }

button {
        width: 100%;
        background-color: #228b22;
        color: white;
        padding: 0.7rem;
        border: none;
        border-radius: 5px;
        margin-top: 1.5rem;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

button:hover {
        background-color: #1b751b;
    }

.admin-link {
        display: inline-block;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #1b751b;
        text-decoration: none;
    }

.admin-link:hover {
        text-decoration: underline;
    }