/* Style for the header */
.header{
    background-color: #194519;  
    height: 75px;               
    width: 100%;                
    position: fixed;            
    top: 0;                     
    left: 0;                    
    display: flex;             
    align-items: center;       
    padding: 0 20px;            
    color: white;              
    box-sizing: border-box;     
    z-index: 1000;              
}

/* Style for the login button */
.login-button{
    padding: 3px 16px;
    background: #ffffff;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border: 2px solid rgb(255, 255, 255); /* White border */
    color: #256314; 
    text-decoration: none;
	font-size:16px;
    font-weight: 700 !important;
    border-radius: 5px;
	min-height:30px
}

/* Button hover effect */
.login-button:hover {
    color: rgb(0, 0, 0); /* Black text */
    background-color: white; /* White background */
}

/* Button after hover effect */
.login-button:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgb(255, 255, 255); /* White background effect */
    transition: all 0.3s ease;
}

/* Expanding background on hover */
.login-button:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}


