/* Importing Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 15px;
  background: white;
}

.wrapper {
  max-width: 500px;
  width: 100%;
  background: #ff7300;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

/* The Modal (background) */
.modal {
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  padding-top: 60px;
}

.container {
  background-color: #ff7300;
  margin: auto auto 15% auto;
  /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #ab4f03;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

.wrapper .title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  padding-left: 25px;
  padding-top: 25px;
}

.wrapper form {
  padding: 0px 25px 35px 25px;

}

.wrapper form .row {
  height: fit-content;
  max-height: 60px;
  /* margin-top: 5px; */
  /* margin-bottom: 5px; */
  position: relative;
  text-align: -webkit-auto;
}

.logo {
  text-align: center;
  max-height: 100px;
  padding: 5px;
  margin-bottom: 30px;
}

.logo img {
  max-height: 100px;
}

.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
}

.wrapper form .row #hint {
  font-size: smaller;
  font-style: italic;
  color: #002A7B;
}

form .row input:focus {
  border-color: #002A7B;
}

form .row input::placeholder {
  color: #999;
}

.wrapper form .row i {
  position: absolute;
  width: 55px;
  height: 100%;
  color: #fff;
  font-size: 22px;
  background: #002A7B;
  border: 1px solid #002A7B;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form .pass {
  margin-top: 12px;
}

.wrapper form .pass a {
  color: #002A7B;
  font-size: 17px;
  text-decoration: none;
}

.wrapper form .pass a:hover {
  text-decoration: underline;
}

.wrapper form .button input {
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  background: #002A7B;
  border: 1px solid #002A7B;
  cursor: pointer;
}

.wrapper form .start input {
  background: #5f6063;
  border: 1px solid rgb(46, 46, 46);
}

.wrapper form .button input:hover {
  background: #0441bb;
}

form .button input:hover {
  background: #0441bb;
}

.wrapper form .signup-link {
  text-align: center;
  margin-top: 45px;
  font-size: 17px;
}

.wrapper form .signup-link a {
  color: #002A7B;
  text-decoration: none;
}

form .signup-link a:hover {
  text-decoration: underline;
}

.frmSearch {
  border: 1px solid #a8d4b1;
  background-color: #c6f7d0;
  margin: 2px 0px;
  padding: 40px;
  border-radius: 4px;
}

#country-list {
  float: left;
  list-style: none;
  margin-top: -3px;
  padding: 0;
  /* width: 190px; */
  width: 100%;
  position: absolute;
  z-index: 999;
}

#country-list li {
  padding: 10px;
  background: #f0f0f0;
  border-bottom: #bbb9b9 1px solid;
}

#country-list li:hover {
  background: #0441bb;
  cursor: pointer;
}

#search-box {
  padding: 10px;
  border: #a8d4b1 1px solid;
  border-radius: 4px;
}

#container {
  width: 80%;
  height: fit-content;
  display: inline-flex;
  margin-left: 10%;
}

.left-container {
  width: 40%;
}

.right-container {
  width: 60%;
  margin-left: 10px;
}

.row-container {
  width: 100%;
}

.left-container-friend {
  width: 40%;
}

.right-container-friend {
  width: 50%;
  margin-left: 10px;
}

.button-add-remove {
  /* width: 10%; */
  /* margin-left: 10px; */
  padding-top: 18px;

}

.column-container {
  border-radius: 10px;
  border: #002A7B solid 1px;
  padding: 25px 25px;
}

.logout {
  margin-left: auto;
  /* width: 55%; */
  text-align: right;
  max-width: 90%;
}

.logout a {
  text-decoration: none;
  color: #002A7B;
}

a {
  text-decoration: none;
  color: #002A7B;
  display: inline-block;
  padding: 8px 20px;
}

a:hover {
  color: #ff7300;
}

.next {
  background-color: #002A7B;
  color: white;
}

.back {
  background-color: #002A7B;
  color: white;
}

.round {
  border-radius: 10%;
}

.top {
  /* max-width: 80%; */
  /* margin-left: 10%; */
  display: flex;
  margin: auto;
  max-width: 500px;
}

.top_friend {
  /* max-width: 80%; */
  /* margin-left: 10%; */
  display: flex;
  margin: auto;
  max-width: 80%;
}

.input_alert::placeholder {
  color: red;
  opacity: 1;
  border-color: red !important;
}

.input_alert::-ms-input-placeholder {
  /* Edge 12-18 */
  color: red;
  border-color: red !important;
}
.input_alert{
  color: red !important;
  border-color: red !important;
}
.input_alert:is(:-webkit-autofill, :autofill){
  color: red !important;
  border-color: red !important;
}
.input_alert:-internal-autofill-selected{
  color: red !important;
  border-color: red !important;
}

.input_alert:-webkit-autofill,
.input_alert:-webkit-autofill:hover, 
.input_alert:-webkit-autofill:focus {
  -webkit-text-fill-color:red !important;
  border-color: red !important;
}
