* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: url('body_bg.png') no-repeat center center/cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
}

.container {
  width: 900px;
  height: 520px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.left-box {
  float: left;
  width: 50%;
  height: 100%;
  background: url("container_bg.jpg") no-repeat center center/cover;
  color: black; 
  text-align: center;
  position: relative;
}

.left-box h1 {
  margin-top: 140px;
  font-size: 32px;
}

.left-box p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px;
  width: 265px;
   margin: auto;
}

.right-box {
  float: right;
  width: 50%;
  height: 100%;
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
}

.right-box h2 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #555;
  margin-top: -15px;
}

.input-box {
  width: 100%;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
}

.options {
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
}

.options input {
  margin-right: 5px;
}

.options a {
  float: right;
  text-decoration: none;
  color: rgb(203, 74, 203);
}


.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #b175f1, #d36dfe);
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
  background: rgb(113, 113, 246);
  box-shadow: 0 0 15px rgb(83, 83, 185), 0 0 15px rgb(94, 94, 239);
}

.signin,
.signup {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: gray;
}

.signin a,
.signup a {
  text-decoration: none;
  color: #6a11cb;
  font-weight: bold;
  margin-left: 5px;
}

.signin a:hover {
  color: purple;
}

input:hover {
  background-color: #f9f6f6;
}
a:hover {
  color: rgb(133, 8, 133);
}

input[type=checkbox]{
  accent-color: rgb(203, 74, 203);
} 

.google-btn {
  display: absolute;
  text-align: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.google-btn img {
  width: 25px;
  height: 25px;
  position: relative;
  top: 3px;
}

.google-btn span {
  margin-left: 6px;
  font-weight: 550;
  position: relative;
  bottom: 3px;
}

.google-btn:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.line {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.line span {
  background: #fff;     
  padding: 0 10px;       
  color: gray;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.line::before {
   content: ""; 
  display: block;
  width: 100%;
  border-top: 1px solid #ccc; 
  position: absolute;
  top: 50%;
  left: 0;

}
