/* font */
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

.comic-relief-regular {
    font-family: "Comic Relief", system-ui;
    font-weight: 400;
    font-style: normal;
}

.comic-relief-bold {
    font-family: "Comic Relief", system-ui;
    font-weight: 700;
    font-style: normal;
}


/* Main Data */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Relief", system-ui;
    outline: none;
}


body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141e30;
    /* fallback for old browsers */
    background: linear-gradient(to right, #243b55, #141e30);
    overflow: hidden;
}


/* Login Page */

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/1920x1080/?technology') no-repeat center center/cover;
    filter: blur(8px);
    z-index: -1;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 400px;
}

.login-form h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.login-form p {
    text-align: center;
    color: #ddd;
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
}

.login-form input::placeholder {
    color: #eee;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #00c6ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-form button:hover {
    background-color: #007acc;
}

@media screen and (max-width: 480px) {
    .login-box {
        padding: 25px;
    }

    .login-form h2 {
        font-size: 24px;
    }
}
/* Nav */
:root {
    --header-height: 3.5rem;
  
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(220, 24%, 12%);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
  
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;
  
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
  
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  /*========== Responsive typography ==========*/
  @media screen and (min-width: 1024px) {
    :root {
      --normal-font-size: 1rem;
    }
  }
  
  /*=============== BASE ===============*/ 
  ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  
  a {
    text-decoration: none;
  }
  
