/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.login-register-buttons {
  background: #1e1e1e;
  padding: 12px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 220px;
  margin: 10px auto 0;
  gap: 10px;
}

.login-button,
.register-button {
  flex: 1 1 45%;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: background 0.3s ease;
}

.login-button:hover,
.register-button:hover {
  background-color: #333;
}



@media only screen and (max-width: 48em) {
  .login-register-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .login-button,
  .register-button {
    flex: 1 1 100%;
  }
}
}