/* styles.css */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #3a096f, #103068);
}

.login-container {
    background-color: rgba(255, 255, 255, .15);  
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    /* text-align: center; Center the logo and headings */
}

.logo {
    margin-bottom: 1rem;
}

h2, h3 {
    padding: 0 5px;
    margin-bottom: 1.5rem;
    color: rgb(197, 203, 247);
}

#loginForm {
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.input-group {
    margin-bottom: 1rem;
    text-align: left; /* Keep labels left-aligned */
}

.input-group label {
    font-family: 'Roboto Flex';
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
    color: rgb(197, 203, 247);
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgb(197, 203, 247);
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #103068;
    color: rgb(197, 203, 247);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #1c52b0;
}

.roboto-flex-text {
  font-family: "Roboto Flex", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

/* Create a logo class, note the logo is in the login container */
.logo {
    display: block;
    margin: 0 auto;
    max-width: 70%;
    height: auto;
}

/* Copyright footer styles */
.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.copyright p {
    margin: 0;
    color: rgb(197, 203, 247);
    font-size: 0.9rem;
    opacity: 0.8;
}