
:root {
    --primary-color: orangered;
    --secondary-color: #f4f4f4;
    --shadow-color: #e6e3e3;
    --font-default: Sans-serif;
    --bg: white;
    --color: black;
    --font: Montserrat, Roboto, Helvetica, Arial, sans-serif;
  }

body{
    margin: 0px;
    font-family: sans-serif;
}


.main-div{
    display: flex;
    height: 100vh;

}

.div-left{
    width: 70%;
    align-items: center;
    display: flex;
    text-align: center;

    justify-content: center;
    height: 100vh;
    background-color: rgb(251, 248, 238);
}

.div-right{
    width: 25%;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 100px;
    padding-left: 30px;
}

.input-with-border {
    border: 0.5px solid gray; /* Border style (1px width, solid line, gray color) */
    padding: 8px; /* Padding inside the input field */
    width: 300px; /* Width of the input field */
    font-size: 16px;
    height: 50px; /* Font size of the text inside */
    border-radius: 4px; /* Optional: Rounded corners for a softer look */
    box-sizing: border-box; /* Ensure padding and border are included in the total width */
}

.input-with-border:focus {
    border: 1px solid orangered;
     /* Change border color to blue when focused */
    /* You can also add other styles here, like box-shadow */
}

.otp-button{
    background-color: black;
    color: white;
    margin-top: 20px;
    border: none;
    font-size: 18px;
    font-size: 15px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 5px;

    padding-right: 20px;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
    background: 
      var(--_g) 0%   50%,
      var(--_g) 50%  50%,
      var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
  }
  @keyframes l3 {
      20%{background-position:0%   0%, 50%  50%,100%  50%}
      40%{background-position:0% 100%, 50%   0%,100%  50%}
      60%{background-position:0%  50%, 50% 100%,100%   0%}
      80%{background-position:0%  50%, 50%  50%,100% 100%}
  }


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -135px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 80px; /* 30px from the bottom */
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }


  #link{
    display: none;
    position: fixed;
}
  @media (max-width: 908px) {
    .div-left{
        display: none;

    }

    .div-right{
        width: 100%;
        margin-left: 0px;
        padding: 0px;
        margin-top: 10px;
    }

    #link{
        display: block;
        position: fixed;
    }

  }


  .card-phone{
    border-radius: 20px;
    box-shadow: 0px 0px 10px var(--shadow-color);
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  #animationContainer {
    width: 300px;
    height: 300px;
    margin: 0 auto;
 }

 .phone-wrapper {
    display: flex;
    align-items: center;
  }
  
  .country-code {
    background-color: #ffffff; /* Adjust as needed */
    padding: 0 10px;
   
    margin-left: 10px;

    height: 45px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 0px;
    line-height: 2; /* Adjust as needed */
  }
  
  .input-with-border {
    flex: 1;
    border: 1px solid #ccc;

    border-radius: 5px; /* Rounded corners on the right side */
    padding: 0 10px;
  }
  
  
  .input-with-border::placeholder {
    color: #999;
  }