/*
  Neubrutalism Theme for DevHive Sign Up Page
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  background: #ffffff;
  border: 3px solid #000000;
  box-shadow: 12px 12px 0px #000000;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.container:hover {
    box-shadow: 8px 8px 0px #000000;
    transform: translate(4px, 4px);
}

h1 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000000;
  text-align: center;
}

p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333333;
  line-height: 1.6;
  text-align: center;
}

form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 2.5px solid #000000;
  border-radius: 0;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}

form input:focus {
  outline: none;
  box-shadow: 6px 6px 0px #000000;
  transform: translate(-3px, -3px);
  background-color: #e0f7fa;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

button[type="submit"] {
  width: 100%;
  padding: 16px;
  background-color: #00FFFF;
  color: #000000;
  border: 2.5px solid #000000;
  border-radius: 0;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 6px 6px 0px #000000;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
}

button[type="submit"]:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000000;
  background-color: #00E0E0;
}

button[type="submit"]:active {
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0px #000000;
  background-color: #00FFFF;
}

.or {
  text-align: center;
  margin: 30px 0;
  position: relative;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
}

.or::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2.5px;
  background: #000000;
  z-index: -1;
}

.or {
    background: #ffffff;
    padding: 0 15px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.social-buttons button {
  width: 100%;
  padding: 12px 16px;
  border: 2.5px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 5px 5px 0px #000000;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.social-buttons button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000000;
  background-color: #f8f9fa;
}

.login-link {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

.login-link a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.login-link a strong::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #00FFFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.login-link a:hover strong::after {
  transform: scaleX(1);
}

/* Remove left column from HTML */
.left {
    display: none;
}

.right {
    flex: 1 1 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 30px;
    }
    h1 {
        font-size: 32px;
    }
    .name-fields {
        grid-template-columns: 1fr;
        gap: 0;
    }
}