:root {
  --text-dark-primary: #222426;
  --text-dark-secondary: #3C4043;
  --text-white-primary: #FBF8F8;
  --text-white-secondary: #F7F6F0;
  --primary-accent-color: #5fa5f8;
  --text-blue-emphasis: #5fa5f8;
  --sloganFontSize: 80px;
}

* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
}
b {
  color: var(--text-blue-emphasis);
  font-weight: inherit;
}
body{
  font-family: "Onest", sans-serif;
  margin: 0;
  color: #222426;
}
input {
    border: 2.2px solid rgba(0, 0, 0, 0.224);
  }
  input:focus {
    outline: 0 ;
    border: 1px solid rgba(0, 123, 255, 1);
    box-shadow: 0px 0px 0px 4px rgba(0, 123, 255, 0.25);
  }
  textarea {
    border: 2.2px solid rgba(0, 0, 0, 0.224);
  }
  textarea:focus {
    outline: 0 ;
    border: 1px solid rgba(0, 123, 255, 1);
    box-shadow: 0px 0px 0px 4px rgba(0, 123, 255, 0.25);
  }
  .reqHighlight {
    outline: 0 !important;
    border: 2px solid rgb(236, 43, 13) !important;
  }
  
  .greenHighlight {
    outline: 0 !important;
    border: 2px solid rgb(13, 236, 84) !important;
  }
  
  .reqHighlight:focus {
    box-shadow: 0px 0px 0px 4px rgba(236, 43, 13, 0.25) !important;
  }
  .greenHighlight:focus {
    box-shadow: 0px 0px 0px 4px rgba(13, 236, 84, 0.25) !important;
  }
  .flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 2000;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    height: 50px;
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    padding: 10px 20px;
    color: #f7f6f0;
  }
  .flashFailure {
    background-color: rgb(233, 44, 34);
  }
  .flashSuccess {
    background-color: rgb(34, 233, 187);
    
  }
  .x {
    width: 30px;
    height: 30px;
  }
  .hide {
    display: none !important;
  }
  .roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  @media (max-width: 550px) {
    .flash {
      font-size: 16px;
    }
  }