/* Reset defaults and enforce Poppins globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Page wrapper using your exact image background */
body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* The exact frosted-glass overlay look */
.login-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(120%);
    -webkit-backdrop-filter: blur(25px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 45px 35px;
    width: 90%;
    max-width: 430px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Brand Header */
.brand-header {
    margin-bottom: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 1.6rem;
    color: #007a33;
    margin-bottom: 2px;
}

.logo-bold {
    font-weight: 700;
}

.handshake {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Matching the exact typography colors from your photo */
.welcome-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111c24; /* Precision dark slate tone */
    line-height: 1.2;
}

.subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #334155;
    margin-top: 4px;
}

/* Input Fields Wrapper */
.form-group {
    margin-bottom: 22px;
}

.input-container {
    position: relative;
    margin-bottom: 14px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    font-size: 0.95rem;
}

/* Semi-transparent input style matching the prompt image */
input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    color: #111c24;
    font-size: 0.95rem;
    font-weight: 400;
    outline: none;
    transition: all 0.2s ease;
}

input::placeholder {
    color: #475569;
    opacity: 0.8;
}

input:focus {
    background: rgba(255, 255, 255, 0.6);
    border-color: #007a33;
}

/* The exact solid gradient green button with smooth active tap action */
button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007a33, #005221);
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 122, 51, 0.3);
    transition: all 0.2s ease;
}

button:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 16px rgba(0, 122, 51, 0.4);
}

/* Physical down-scaling click animation */
button:active {
    transform: scale(0.96);
}

/* Footer Navigation Links */
.auth-footer {
    margin-top: 26px;
    font-size: 0.85rem;
}

.footer-link {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.divider {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}