/* Material Icons Font (for MD theme) */

/*@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/MaterialIcons-Regular.eot);
    src: local('Material Icons'),
      local('MaterialIcons-Regular'),
      url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
      url(../fonts/MaterialIcons-Regular.woff) format('woff'),
      url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
  }*/
  
  @font-face {
    font-family: 'ccfont';
    src: url('../fonts/ccfont.ttf?6018815') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
  }
  
  /* Framework7 Icons Font (for iOS theme) */
  @font-face {
    font-family: 'Framework7 Icons';
    font-style: normal;
    font-weight: 400;
    src: url("Framework7Icons-Regular.eot");
    src: url("Framework7Icons-Regular.woff2") format("woff2"),
      url("Framework7Icons-Regular.woff") format("woff"),
      url("Framework7Icons-Regular.ttf") format("truetype");
  }
  
  .f7-icons {
    font-family: 'Framework7 Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    font-feature-settings: "liga";
    text-align: center;
  }
  

  #dropbox {
    height: 58px;
    background: var(--scroller-background);
    text-align: center;
    line-height: 60px;
    border-width: 1px;
    border-color: black;
    border-style: dashed;
    color: rgba(0, 0, 0, .26);
    font-size: 16px;
    margin: 60px 20px 20px;
  }
  
  #theprogress {
    width: 0;
    margin-top: -2px;
    height: 4px;
    background: teal;
    line-height: 2px;
    position: relative;
  }
  

  .otp-card {
        background: transparent;
        padding: 2rem;
        border-radius: 1rem;
        text-align: center;
        width:100%
      }
      
      .otp-card h1 {
        font-size: 1.5rem;
        color: var(--text-main);
        margin-bottom: 0.5rem;
      }
      
      .otp-card p {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 2rem;
      }
      
      .otp-inputs {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 2rem;
      }
      
      .otp-inputs input {
        width: 32px;
        height: 40px;
        text-align: center;
        font-size: 1rem;
        font-weight: bold;
        border: 2px solid var(--input-border);
        border-radius: 0.5rem;
        background: transparent;
        transition: all 0.2s ease-in-out;
        outline: none;
      }
      
      /* The Magic Focus State */
      .otp-inputs input:focus {
        border-color: var(--primary-color);
        /*box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);*/
      }
      
      .verify-btn {
        width: 90%;
        padding: 0.75rem;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.2s;
        left:5%;
      }
      
      .verify-btn:hover {
        opacity: 0.9;
      }
      
      .resend {
        margin-top: 1.5rem;
        font-size: 0.85rem !important;
      }
      
      .resend a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
      }