*,body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Vazirmatn;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(123,102,255);
    background: linear-gradient(90deg, rgba(123,102,255,1) 0%, rgba(95,189,255,1) 67%, rgba(150,239,255,1) 100%); 
}

/* Generated by script */
@font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Vazirmatn;
    src: url('../webfonts/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  
input {
    border: none;
    outline: none;
}

main {
    width: 100%;
    min-height: 100vh;
}
.form-control {
    border-radius: 0.75rem;
    font-size: 14px;
    transition: all 200ms;
    background-color: #fafafa !important;
    border: 1px solid #999 !important;
    color: #999 !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 4px 12px;
    width: 400px;
    max-width: 100%;
    flex: 1 1;
}
.form-control:focus {
    border-radius: 0.75rem;
    outline: 0;
    box-shadow: none;
    color: #999;
    background-color: #ffffff !important;
    border-color: #eee !important;
}