/* 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;
    background: linear-gradient(135deg, #012d47, #004b74); /* Blue gradient background */
    color: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Space between elements */
    padding: 20px; /* Login/Register pages ke liye padding */
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: -10px; /* Adjust as needed */
}

.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; /* Space for icon */
    background-color: rgba(0, 0, 0, 0.2);
    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 {
    border-color: #00e1ff;
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.5);
}

.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;
    color: #004b74; /* Dark blue text on white button */
    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; /* Navbar (75px) + Margin (20px) = 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; /* Navbar se ooper rakhne ke liye (Navbar ka z-index 1000 hai) */
}

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