* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: url("../imagenes/unnamed.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 100%;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.showcase {
  width: 50%;
  background-image: url("../imagenes/Itau-el-banco-privado-mas-grande-de-Brasil-desarrollara-un-fondo-de-liquidez-DeFi.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 16px 0 0 16px;
}
.showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.showcase > * {
  position: relative;
  z-index: 2;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.selected-works {
  font-weight: 500;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn.sign-up {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn.sign-up:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn.join-us {
  background: #fff;
  color: #333;
}
.btn.join-us:hover {
  background: rgb(229.5, 229.5, 229.5);
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info .name {
  font-weight: 600;
  font-size: 16px;
}
.profile-info .job {
  font-size: 12px;
  opacity: 0.8;
}

.navigation {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.login-form {
  width: 50%;
  padding: 40px;
  background-color: #fff;
  border-radius: 0 16px 16px 0;
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #333;
}

.language-selector .lang-btn {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.language-selector .lang-btn:hover {
  background: #f5f5f5;
}

.form-content {
  max-width: 400px;
  margin: 0 auto;
}

h1 {
  font-size: 32px;
  margin-bottom: 5px;
  color: #333;
}

.welcome-text {
  color: #777;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
}
.input-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.input-group input:focus {
  outline: none;
  border-color: #ff6200;
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px;
}
.forgot-password a {
  color: #ff6200;
  text-decoration: none;
  font-size: 14px;
}
.forgot-password a:hover {
  text-decoration: underline;
}

.google-btn {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.google-btn .google-icon {
  width: 20px;
  height: 20px;
}
.google-btn:hover {
  background: #f5f5f5;
}

.login-btn {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  border: none;
  background: #ff6200;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background: #131193;
}

.signup-link {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #777;
}
.signup-link a {
  color: #ff6200;
  text-decoration: none;
  font-weight: 500;
}
.signup-link a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-links .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links .social-icon:hover {
  background: #ff6200;
  color: #fff;
}

@media (max-width: 900px) {
  .login-card {
    flex-direction: column;
  }
  .showcase,
  .login-form {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .showcase {
    height: 300px;
  }
  .login-form {
    border-radius: 0 0 16px 16px;
  }
}

/*# sourceMappingURL=style.css.map */
