@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@500;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
}

body {
  background-color: #f9f9f9;
  height: 100vh;
}

.signin_body {
  background-color: #f9f9f9;
  height: 100vh;
}

.container {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

/* SideBar Style */

.sidebar {
  /* background-image: url(../Images/bg.png);
  background-position: top; */
  background-color: #002e5c;
  width: 35%;
  padding: 75px;
}

.sidebar_container {
  position: relative;
  top: 40%;
  transform: translate(0, -50%);
}

.sidebar .title_sidebar h1 {
  color: white;
  font-size: 48px;
}

.sidebar .title_sidebar h1 span {
  color: yellow;
}

.sidebar .title_sidebar .paragraph_sidebar {
  color: white;
}

.Stages_sidebar {
  display: flex;
}

.Stages_sidebar span {
  background-color: white;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  margin-top: 15px;
  margin-left: 15px;
  text-align: center;
}

.Stages_sidebar span p {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* Content Style */

.content {
  height: 100%;
  width: 100%;
  padding: 25px;
}

.content_container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title_content {
  color: rgb(0, 0, 0);
  font-size: 48px;
}

.title_content span {
  color: #0062c4;
}

.signin_form {
  width: 600px;
  min-height: 450px;
  padding: 15px;
  background: rgba(230, 242, 255, 0.19);
  border-radius: 32px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.8px);
  -webkit-backdrop-filter: blur(13.8px);
}

/* Start Circle img */
.upload {
  width: 100px;
  position: relative;
  margin: auto;
}

.upload img {
  border-radius: 50%;
  border: 4px solid #eaeaea;
}

.upload .round {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0062C3;
  width: 32px;
  height: 32px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.upload .round input[type="file"] {
  position: absolute;
  transform: scale(2);
  opacity: 0;
}

input[type=file]::-webkit-file-upload-button {
  cursor: pointer;
}

/* End Circle img */

.signin_form h2 {
  text-align: center;
  color: #0062c4;
  margin-bottom: 15px;
}

.form_label {
  padding-inline: 10px;
}

.form_input {
  display: block;
  width: 80%;
  margin: 5px 35px;
  border-radius: 10px;
  border: 1px solid #00376e7a;
  height: 50px;
  outline: none;
  text-indent: 10px;
  font-size: 18px;
}

.form_input_file {
  display: block;
  width: 80%;
  margin: 5px 35px;
  border-radius: 10px;
  border: 1px solid #00376e7a;
  height: 50px;
  outline: none;
  font-size: 18px;
}

.form_input_file::file-selector-button {
  background-color: #0062C4;
  height: 100%;
  border: none;
  text-indent: 0;
  color: white;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

.form_input_file::file-selector-button:hover {
  background-color: #002e5c;
  color: white;
}

.forget_section {
  margin: 5px 35px 0 80px;
  display: flex;
  justify-content: space-between;
}

.btn_container {
  text-align: center;
  width: 100%;
  margin-top: 25px;
}

.signin_btn {
  display: block;
  width: 80%;
  padding: 10px;
  margin: 0 35px;
  border-radius: 10px;
  background: #0062C4;
  color: white;
  border: none;
}

.signin_btn:hover {
  background-color: #002e5c;
}

.signup_info {
  text-align: center;
  margin-top: 10px;
}
.forget_form .choice_btn{
  display: flex;
  flex-direction: column;
  margin: 10px 35px;
}
.forget_form .choice_btn p{
  color: #0062C4;
  font-weight: 700;
}
.forget_form .choice_btn label{
  margin: 0 15px;
}

/* Sign Up Styles */

.logo_up {
  width: 100px;
  height: 75px;
}

.title_content_up {
  color: rgb(0, 0, 0);
  font-size: 36px;
}

.title_content_up span {
  color: #0062C4;
}

.signup_form {
  width: 600px;
  padding: 15px;
  background: rgba(230, 242, 255, 0.19);
  border-radius: 32px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.8px);
  -webkit-backdrop-filter: blur(13.8px);
}

.signup_form h2 {
  text-align: center;
  color: #0062c4;
  margin-bottom: 15px;
}

.multi_inputs {
  display: flex;
}

.signup_btn {
  display: block;
  width: 80%;
  padding: 10px;
  margin: 0 35px;
  border-radius: 10px;
  background: #0062C4;
  color: white;
  margin-bottom: 15px;
}

.signup_btn:hover {
  background-color: #002e5c;
}

.forget_form {
  width: 600px;
  height: 400px;
  padding: 15px;
  background: rgba(230, 242, 255, 0.19);
  border-radius: 32px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.8px);
  -webkit-backdrop-filter: blur(13.8px);
}

.forget_form form{
  width: 90%;
  margin: auto;
}

.forget_form h2 {
  text-align: center;
  color: #0062c4;
  margin-bottom: 15px;
}

.password-container {
  display: flex;
  position: relative;
}

.password-container #password {
  position: relative;
}

.password-container #showPassword {
  position: absolute;
  left: 90px;
  top: 15px;
  cursor: pointer;
}
.password-container #showConfirmPassword {
  position: absolute;
  left: 90px;
  top: 15px;
  cursor: pointer;
}

.field_login{
  width: 80%;
  margin: 15px 35px;
  border-radius: 15px;
  padding: 15px 10px;
}

.field_login legend{
  padding: 0 10px;
}

.choice_login{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.choice_login input{
  margin: 0 5px;
}
.resend_container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
.resend_code{
  font-size:14px;
}
.password_field{
  position: relative;
}

@media (max-width:950px) {
  body {
    background-color: #f9f9f9;
  }

  .container {
    width: 100%;
  }

  .sidebar {
    display: none;
  }

  .content_container {
    text-align: center;
    height: 100%;
    display: block;
    margin-inline: auto;
  }

  .content_container img {
    height: 100px;
    width: 120px;
  }

  .title_content,
  .title_content_up {
    color: rgb(0, 0, 0);
    font-size: 24px;
  }

  .signin_form {
    width: 100%;
    min-height: 450px;
    text-align: right;
  }

  .signup_form {
    width: 100%;
    text-align: right;
  }

  .forget_form {
    width: 100%;
    text-align: right;
  }

  .form_label {
    padding-inline: 5px;
  }

  .form_input,
  .form_input_file {
    display: block;
    width: 100%;
    margin: 5px 0;
    font-size: 16px;
  }

  .multi_inputs {
    display: flex;
    justify-content: space-between;
    gap: 5px;
  }

  .forget_section {
    margin: 5px 5px 0 5px;
    display: flex;
    justify-content: space-between;
  }

  .upload img {
    width: 100px;
  }

  .password-container #showPassword {
    position: absolute;
    left: 15px;
    top: 25px;
    cursor: pointer;
  }
  .password-container #showConfirmPassword {
    position: absolute;
    left: 15px;
    top: 25px;
    cursor: pointer;
  }
  .field_login {
    width: 100%;
    margin: 15px 0;
    border-radius: 15px;
    padding: 15px 10px;
}
}