/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Blue gradient hata kar Image wala Green color laga diya hai */
    background: #395844; 
    color: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: -10px;
}

.main-heading {
    font-weight: 600;
    font-size: 1.8em;
    color: #FFF;
    text-align: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background-color: rgba(0, 0, 0, 0.1); /* Thora halka kiya taake green background py acha lagy */
    border: 1px solid #ffffff;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    /* Neela rang hata kar White/Green glow diya hai */
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
}

.visibility-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    /* Button ke text ka color ab Dark Green hai */
    color: #395844; 
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn:active {
    transform: scale(0.97);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.bottom-link {
    color: rgba(255, 255, 255, 0.9);
}

.bottom-link a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

/* ===== FINAL UPDATED WHATSAPP BUTTON ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    z-index: 1001;
}

.whatsapp-fab:active {
    transform: scale(0.95);
}
