/**
 * Login/Signup Page Styles
 */

/* Container */
.container-c {
  background-color: #fff;
  padding: 20px;
  max-width: 500px;
  margin: 50px auto;
  border-radius: 8px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Tab Container */
.tab-container {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  justify-content: center;
}

/* Tab Buttons */
.tab {
  background-color: #ddd;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  text-align: center;
  outline: none;
  border-bottom: none;
  transition: background-color 0.3s, border-radius 0.3s;
}

.tab:first-child {
  border-top-right-radius: 8px;
}

.tab:last-child {
  border-top-left-radius: 8px;
}

.tab:hover {
  background-color: #ccc;
}

.tab.active {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.tab-container>.active {
  background: linear-gradient(50deg, #03d1ff, #0064fb, #0460ea, #0064fb);
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
}

.tab-content input {
  margin-bottom: 15px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

/* Checkboxes and radio buttons should not take full width */
.tab-content input[type="checkbox"],
.tab-content input[type="radio"] {
  width: auto;
  margin-right: 8px;
  margin-bottom: 0;
}

.tab-content button[type="submit"] {
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.tab-content button[type="submit"]:hover {
  background-color: #0056b3;
}