@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background-primary-color: #f9f9f9;
    --background-secondary-color: rgb(218, 226, 226);
    --primary-color: rgba(28, 76, 150, 0.603);
    --primary-color-darker: rgb(28, 66, 104);
}

* {
    box-sizing: border-box;
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-primary-color);
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

.box-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    .box-card {
      width: 500px;
      max-width: 50%;
      background-color: #f0f2f5;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }
  }
  
  .button {
    width: 300px;
    max-width: 70%;
    min-width: 150px;
    padding: 10px 15px;
    background-color: #0088ce;
    background-image: linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);
    background-repeat: repeat-x;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 1px;
    border: 1px solid #00659c;
    white-space: normal;
    text-align: center;
    text-decoration: none;
  
    &:hover {
      background-image: none;
    }
  }
  