:root{
    --white: #ffffff;
    --black: #000;
    --light: #f5f5f5;
    --medium: #e3e3e3;
    --main: #204460;
    --mainHover: #306187;
    --submain: #4f5089;
    --altmain: #5C7B93;
    --link: #4263EB;
    --Red: #D71414;
    --Cyan: #0C8181;
    --darkCyan: #006666;
    --Green: #10AC10;
    --Orange: #D76C14;
    --Blue: darkblue;
    --Mustard: #D79614;
    --Purple: #391D94;
    --Grey: #5E6169;
    --default: #2b1f69;
    --a-default: Red;
    --box-shadow-grey: rgba(0, 0, 0, 0.30);
    --bg-shadow-grey: rgba(0, 0, 0, 0.30);
    --openbtn: #2b1f69;
    --sidebar-bg: #4f5089;
    --topNavbar-bg: #4f5089a8;
    --main-bg: #ffffffe0;
    --section-bg: #ffffffe0;
    --separator: #0000004d;
    --footer-bg: #ffffffe0;
    --whitesmoke: whitesmoke;
    --buttonShadow: #00000038;
    --snack-bg: lime;
    --well-bg: #f5f5f55c;
    --login-bg: #7460ee;
    --login-bg-hover: #624fe1;
    --footer_fontColor: darkgray;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body{
    font-family: 'Manrope', sans-serif;
}

hr{
    border-top: 1px var(--medium);
    width: 100%;
    height: 1px;
}

.page {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, whitesmoke, #f5f5f5);
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace, Arial, sans-serif;
}

.QS__401 {
    margin: 1rem;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.QS__401-block {
    display: flex;
    flex-direction: column;
    color: var(--Grey);
    font-family: monospace;
}

.QS__401-h1-title {
    text-align: center;
    margin: auto;
    text-transform: uppercase;
}

.QS__401-h2-title {
    text-align: center;
    margin: auto;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

main button{
       display: flex;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: -1rem;
    height: 2rem;
    align-items: center;
    border: 0;
    text-transform: uppercase;
    font-size: 0.7rem;
    border-radius: 5px;
    background: var(--whitesmoke);
    padding: 1rem;
    cursor: pointer;
}

main button:hover{
    background: var(--medium);
}

footer{
    position: absolute;
    bottom: 2rem;
    font-size: 1rem;
    color: var(--footer_fontColor);
    display: flex;
    gap: 0.5rem;
    margin: auto;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}