/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #4f73ff, #6dd5fa);
}

.container {
  width: 850px;
  height: 500px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  overflow: hidden;
}

/* Caixa esquerda */
.welcome-box {
  width: 50%;
  background: #4a90e2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.welcome-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.welcome-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-outline {
  border: 2px solid #fff;
  padding: 10px 25px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #4a90e2;
}

/* Caixa direita */
.form-box {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #333;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: #4a90e2;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #357abd;
}

