body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #26223A;
 
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
 
}

.login-link {
  color: #b5b5c3;
  font-size: 1rem;
  margin-bottom: 26px;
 
}

.input {
  background: #221d36;
  border: 1.5px solid #3a345a;
  border-radius: 8px;
  padding: 13px 16px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  margin-bottom: 13px;
  width: 50%;
  transition: border 0.2s;
}

.input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  width:50%;
  
  
}

.create-account-btn {
  background: #a48bfa;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 22px;
  cursor: pointer;
  transition: background 0.2s;
  width: 50%
}
.create-account-btn:hover {
  background: #8d6bf9;
}

.checkbox-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color:white
  
}
.checkbox-row input[type="checkbox"] {
  accent-color: #a48bfa;
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.checkbox-row a {
  color: #a48bfa;
  text-decoration: underline;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.left{
    flex: 1;
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    background-image: url("https://img.freepik.com/free-photo/snowy-winter-landscape_23-2151892054.jpg?semt=ais_items_boosted&w=740");
}
.right{
    flex:1;
    padding-left: 10%;
}
