* {
  font-family: Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f0f2f5;
  font-size: 18px;
}
.container{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
} 
.wrapper{
  display:flex;
  align-items: center;
  gap: 80px;
}
.left h1 {
  font-size: 65px;
  margin-bottom: 10px;
  color: #1877f2
 
}
.left {
   text-align: center;
}
.left p{
  font-size: 30px;
  color: #1c1e21;
  max-width: 500px;
  line-height: 1.0;


}
input{ 
  padding: 14px;
}
button{
  padding: 14px;
}
.login-form{
  padding: 24px;
}
.right{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form{
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 550px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.1);
}
.login-form input{
  width: 100%;
  padding: 20px ;
  margin-bottom: 12px;
  border: 1px solid #dddfe2;
  border-radius: 6px;
  font-size: 20px;
}

.login-btn {
  background: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  padding: 20px ;
  display: block;
}
.forgot {
display: block;
text-align: center;
margin: 16px 0;
color: #1877f2;
text-decoration: none;
font-size: 14px;
}
.divider{
  background: #dadde1;
  height: 1px;
  margin: 20px 0;
}
.create-btn {
  background: #42b72a;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18 px;
  font-weight: bold;
  cursor: pointer;
  width: auto;
  padding: 12px 20px;
  display: block;
  margin: 14px auto 0;
}
.create-page {
 margin-top: 28px;
 text-align: center;
 font-size: 14px;
 color: #1c1e21;

}
.create-page a{
  color: #000;
  text-decoration: none;
  font-weight: bold;

}
.create-page a:hover {
  text-decoration: underline;

}
/* =====================
   GLOBAL RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f0f2f5;
  color: #1c1e21;
}

/* =====================
   SHARED CONTAINERS
===================== */
.signup-wrapper,
.forgot-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box,
.forgot-box {
  background: #fff;
  width: 420px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1),
              0 8px 16px rgba(0,0,0,0.1);
}

/* =====================
   SIGNUP PAGE STYLES
===================== */
.signup-title {
  font-size: 32px;
  font-weight: bold;
}

.signup-subtitle {
  font-size: 15px;
  color: #606770;
  margin-bottom: 15px;
}

.name-row {
  display: flex;
  gap: 10px;
}

.signup-box input,
.signup-box select {
  width: 100%;
  padding: 11px;
  font-size: 15px;
  margin-bottom: 10px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
}

.label {
  font-size: 12px;
  color: #606770;
  margin: 6px 0;
  display: block;
}

.dob-row {
  display: flex;
  gap: 10px;
}

.gender-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.gender-box {
  flex: 1;
  border: 1px solid #ccd0d5;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terms {
  font-size: 11px;
  color: #777;
  margin: 10px 0;
}

.signup-btn {
  background: #42b72a;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  width: 200px;
  border-radius: 6px;
  display: block;
  margin: 15px auto;
  cursor: pointer;
}

.back-login {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1877f2;
  text-decoration: none;
}

/* =====================
   FORGOTTEN PASSWORD
===================== */
.forgot-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.forgot-text {
  font-size: 14px;
  color: #606770;
  margin-bottom: 15px;
}

.forgot-box input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
  margin-bottom: 15px;
}

.forgot-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cancel-btn {
  padding: 8px 14px;
  background: #e4e6eb;
  border-radius: 6px;
  text-decoration: none;
  color: #050505;
  font-size: 14px;
}

.search-btn {
  padding: 8px 16px;
  background: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
/* =====================
   GLOBAL RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f0f2f5;
  color: #1c1e21;
}

/* =====================
   SHARED CONTAINERS
===================== */
.signup-wrapper,
.forgot-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box,
.forgot-box {
  background: #fff;
  width: 420px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1),
              0 8px 16px rgba(0,0,0,0.1);
}

/* =====================
   SIGNUP PAGE STYLES
===================== */
.signup-title {
  font-size: 32px;
  font-weight: bold;
}

.signup-subtitle {
  font-size: 15px;
  color: #606770;
  margin-bottom: 15px;
}

.name-row {
  display: flex;
  gap: 10px;
}

.signup-box input,
.signup-box select {
  width: 100%;
  padding: 11px;
  font-size: 15px;
  margin-bottom: 10px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
}

.label {
  font-size: 12px;
  color: #606770;
  margin: 6px 0;
  display: block;
}

.dob-row {
  display: flex;
  gap: 10px;
}

.gender-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.gender-box {
  flex: 1;
  border: 1px solid #ccd0d5;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terms {
  font-size: 11px;
  color: #777;
  margin: 10px 0;
}

.signup-btn {
  background: #42b72a;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  width: 200px;
  border-radius: 6px;
  display: block;
  margin: 15px auto;
  cursor: pointer;
}

.back-login {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1877f2;
  text-decoration: none;
}


.forgot-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.forgot-text {
  font-size: 14px;
  color: #606770;
  margin-bottom: 15px;
}

.forgot-box input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
  margin-bottom: 15px;
}

.forgot-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cancel-btn {
  padding: 8px 14px;
  background: #e4e6eb;
  border-radius: 6px;
  text-decoration: none;
  color: #050505;
  font-size: 14px;
}

.search-btn {
  padding: 8px 16px;
  background: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}


 
@media  (max-width: 800px) {
  .wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .left h1 {
    font-size: 50px;
  }
  .left p {
    font-size: 24px;
  }
  .login-form {
    width: 100%;
  }
  
}






