
/* The default style for the login element */
.modify-login {
   
    margin-top: 15px;
    padding: 10px;
    background: darkred;
    width: 150px;
    float: right;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 15px;

}
.modify-login-log{

    margin-top: 15px;
    padding: 10px;
    background: darkred;
    width: 150px;
    float: right;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 15px;
}





.modify-login-home{
    
    margin-top: 15px;
    padding: 10px;
    background: darkred;
    width: 150px;
    float: right;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 15px;
    margin-left: 15px;

}
.button-88 {
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, #8b0000 0%, rgb(236 43 43) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-88:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-88:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}






/* Media query for screens with a maximum width of 600px or less */
@media screen and (max-width: 600px) {
    .modify-login-home {
        margin-left: 2%; /* Remove the left margin to center the element */
        width: 93%; /* Make the element full width */
        * Remove the float to prevent text wrapping */
        
        margin-right: 2%;
    }
}


@media screen and (max-width: 600px) {
    .modify-login {
        margin-left: 2%; /* Remove the left margin to center the element */
        width: 93%; /* Make the element full width */
        * Remove the float to prevent text wrapping */
        
        margin-right: 2%;
    }
}




/* Common styling for both mobile and desktop */
.site-domain{
    text-align: center;
    margin-bottom: 10px;
    
}




.mobile-links,
.desktop-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-links li,
.desktop-links li {
    display: inline-block;
}

.mobile-links li:not(:last-child),
.desktop-links li:not(:last-child) {
    margin-right: 10px;
}

/* Mobile styling for the footer */
@media screen and (max-width: 600px) {
    .desktop-links {
        display: none; /* Hide desktop links on mobile */
    }
}





/* Desktop styling for the footer */
@media screen and (min-width: 601px) {
    .mobile-links {
        display: none; /* Hide mobile links on desktop */
    }

    .desktop-links {
        /* Float the links to the right on desktop */
        margin-top: 10px; /* Add some space between site domain and links */
    }
}

