html {
  font-size: 11px;
}

body {
    background-color: rgb(32, 42, 43);
}

h1{
    text-align: center;
    color: rgba(189, 234, 255, 0.635);
}

h5{
    text-align: center;
}

.title {
    font-size: 5rem;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.2rem;
    font-weight: 500;
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}


button[type="submit"] {
    width: 10rem;
    display: block;    
    margin-left: auto;
    margin-right: auto;
}


.register-link {
    text-align: center;
    margin-top: 15px;
}

.register-link a {
    text-decoration: none;
    color: #007BFF;
}

.register-link a:hover {
    text-decoration: underline;
}


footer {
    z-index: 10;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: white;
    font-family: Arial, sans-serif;
}

footer img {
    height: 3rem;
    /* Adjust logo size as needed */
    margin-bottom: 5px;
}

footer p {
    margin: 0;
    font-size: 0.8rem;
}

input.transparent-bg,
select.transparent-select,
select.transparent-select option {
    background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 600px) {
  html {
    font-size: 1rem; /* Increase root size on bigger screens */
  }
}