
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;700;900&family=Almarai:wght@300;400;700&display=swap');

.box-head {
  color: var(--primary-one, #244497);
  font-family: 'Almarai';
  font-size: 24px;
  font-weight: 700;
}

.modal {
  display: none !important;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1000000000000000000000000000000000000000000000999999999999999999999999 !important;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fefefe;
  align-items: center;
  justify-content: center;
  margin: 30% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 16px;
  position: relative;
}

.close {
  color: #aaa;
  left: 10px;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  padding: 10px;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.blue,
.orange {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 399px;
  height: 48px;
  padding: 16px;
  gap: 10px;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  font-family: Almarai;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}

.country-code {
  font-family: Alexandria;
  font-weight: 400;
}

.blue {
  background: var(--primary-one, #244497) !important;
color: white !important;
}

.orange {
  background-color: white !important;
  border: 1px solid var(--primary-two, #F06030) !important;
  color: var(--primary-two, #F06030) !important;
}

#loginModal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elements {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-input-container {
  position: relative;
  display: flex;
  border-radius: 4px;
  border: 1px solid var(--text, #5E718D);
  background: #FFF;
  padding: 5px;
  align-items: center;
  width: 100vw;
  overflow: hidden;
  max-width: 381px;
  height: 56px;
  justify-content: space-between;
}

.flag-dropdown {
  flex-grow: 0;
  border: none;
  background: transparent;
  padding: 5px;
  margin-right: -1px;
  z-index: 10;
}

.phone-input {
  flex-grow: 1;
  display: flex;
  align-items: center;
  border: none;
  padding-left: 5px;
  padding-right: 5px;
}

.vertical-line {
  height: 24px;
  border-left: 1px solid grey;
  margin-right: 5px;
}

.country-code {
  color: grey;
  margin-right: 5px;
}

.editable-part {
  text-align: left;
  flex-grow: 1;
  border: none;
  outline: none;
}

.problem-text,
.problem-contact,
.label-phone,
.label-input label {
  color: var(--text, #5E718D);
  font-family: Alexandria;
  font-size: 14px;
  font-weight: 400;
}

.label-input label {
  text-align: right;
}

.label-input {
  text-align: right;
}

.problem-contact {
  color: var(--primary-two, #F06030);
}

@media screen and (max-width: 480px) {
  .modal-content {
    margin: 5% auto;
  }

  .blue,
  .orange {
    width: 95%;
  }

  .phone-input-container {
    width: 77vw;
  }

  .box-head {
    text-align: center;
    font-size: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;700;900&family=Almarai:wght@300;400;700&display=swap');
.new-verification-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.new-verification-box {
  width: 40px; 
  height: 40px;
  margin: 0 10px; 
  border: 1px solid var(--primary-two, #F06030);
  border-radius: 5px;
  text-align: center;
  font-size: 24px; 
}


.new-verification-box:focus {
  outline: none;
  border-color: var(--primary-one, #244497);
}

/* Media query for responsiveness */
@media screen and (max-width: 480px) {
  .new-verification-container {
    padding: 10px;
  }
  .new-verification-box {
    width: 10vw; /* Responsive width */
    height: 10vw; /* Responsive height */
    margin: 0 3vw; /* Responsive spacing */
  }
}


.new-box-head {
  color: var(--primary-one, #244497);
  font-family: 'Almarai';
  font-size: 24px;
  font-weight: 700;
}

.new-modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6); 
}

.new-modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fefefe;
  align-items: center;
  justify-content: center;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 16px;
  position: relative;
}

.new-close {
  color: #aaa;
  left:10px;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
}

.new-close:hover,
.new-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.new-btn {
  padding: 10px;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.new-blue, .new-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 399px;
  height: 48px;
  padding: 16px;
  gap: 10px;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  font-family: Almarai;
  font-size: 18px;
  font-weight: 700;
}

.new-blue {
  background: var(--primary-one, #244497);
}

.new-orange {
  background-color: white;
  border: 1px solid var(--primary-two, #F06030);
  color: var(--primary-two, #F06030);
}

#new-loginModal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new-phone-input-container {
  position: relative;
  display: flex;
  border-radius: 4px;
  border: 1px solid var(--text, #5E718D);
  background: #FFF;
  padding: 5px;
  align-items: center;
  width: 100vw;
  overflow: hidden;
  max-width: 381px;
  height: 56px;
  justify-content: space-between;
}

.new-flag-dropdown {
  flex-grow: 0;
  border: none;
  background: transparent;
  padding: 5px;
  margin-right: -1px; 
  z-index: 10;
}

.new-phone-input {
  flex-grow: 1;
  display: flex;
  align-items: center;
  border: none;
  padding-left: 5px;
  padding-right: 5px;
}

.new-vertical-line {
  height: 24px;
  border-left: 1px solid grey;
  margin-right: 5px;
}

.new-country-code {
  color: grey;
  margin-right: 5px;
}

.new-editable-part {
  text-align: left;
  flex-grow: 1;
  border: none;
  outline: none;
}

.new-problem-text,
.new-problem-contact,
.new-label-phone,
.new-label-input label {
  color: var(--text, #5E718D);
  font-family: Alexandria;
  font-size: 14px;
  font-weight: 400;
}
.new-label-input label{
  text-align: right ;
}
.new-label-input{
  text-align: right;
}
.new-problem-contact {
  color: var(--primary-two, #F06030);
}

@media screen and (max-width: 480px) {
  .new-modal-content {
    margin: 5% auto;
  }

  .new-blue, .new-orange {
    width: 95%;
  }
  .new-phone-input-container{
    width: 77vw;
  }
  .new-box-head {
    font-size: 20px;
  }

  .new-problem-text{
    width: 230px;
    font-size: 13px !important;
  }

  .new-problem-text span{ 
    font-size: 10px;
  }
}

.new-one-line-p{
  display: flex;
  align-items:center;
  justify-content: space-between;
  gap: 50px;
}
