/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #4a90e2, #79c7ff);
    height: 100vh;
}

/* Center Box */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Login Card */
.login-card {
    width: 360px;
    padding: 35px 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* ✅ NGO Logo */
.ngo-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 12px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #00356b;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Input fields */
.input-field {
    position: relative;
    margin-bottom: 22px;
}

.input-field input {
    width: 100%;
    padding: 14px;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    font-size: 15px;
    background: white;
    outline: none;
}

.input-field input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Floating labels */
.input-field label {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.2s;
    background: white;
    padding: 0 4px;
}

.input-field input.filled+label,
.input-field input:focus+label {
    top: -8px;
    font-size: 12px;
    color: #0061d3;
}

/* Password eye icon */
.password-box {
    position: relative;
}

.eye-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.eye-btn svg {
    width: 20px;
    height: 20px;
    color: #555;
}

/* Error text */
.error {
    color: red;
    height: 18px;
}

/* Login button */
.btn {
    width: 100%;
    background: linear-gradient(90deg, #006aff, #003b99);
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.9;
}