
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: #167481   ; /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}

.login-form .btn {
    width: 100%;
    background-color: #006400; /* Dark Green button */
}

.text-light {
    color: #28a745; /* Light green for links */
}

.login-form input {
    background-color: #9bd8e0;
    color: #fff;
    border: none;
    padding: 15px;
}

.login-form input:focus {
    outline: none;
    border-color: #28a745;
}
.btn-custom {
    background-color: #004d40; /* Dark green */
    color: #e0e0e0; /* Light text */
    width: 100%;
   
    margin: 10px auto;
    text-align: center;
}

/* Blinking animation for the second button */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.btn-blink {
    animation: blink 1s infinite;
}

/* Custom style for second button (optional, different text color) */
.btn-contact {
    color: #00e676; /* Brighter green text */
}
a{
    text-decoration: none;
}

.social-links a {
    margin-right: 10px;
    color: #fff;
    /* Social icons in green */
    font-size: 20px;
}

.social-links a:hover {
    color: #8f9448; 
}

.hero{
    background-image: url(bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  
}
.forgot:hover {
   
    text-decoration: underline; /* Add underline on hover */ 
}
.privacy{
    color: #006400;
}

.whatsapp {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    right: 20px;  /* Distance from the right side of the viewport */
    z-index: 1000; /* Keeps it on top of other elements */
    text-decoration: none;
    color: white;
}
.whatsapp a {
    color: white; /* Makes the text white */
    text-decoration: none; /* Removes underline */
}