body {
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow-y: hidden;
    background: linear-gradient(to bottom, rgba(50, 50, 50, 1) 0%, rgba(0, 0, 0, 1) 100%);
  }

#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../src/csr3.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    pointer-events: none;
}
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.25;
    
}
#background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -2;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.container div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
  
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
label {
    font-size: 1.2rem;
    width: 150px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
  
input[type="text"],
input[type="password"] {
    padding: 0.5rem;
    margin-bottom: 1rem;
    width: 15rem;
    border: none;
}
  
button {
    padding: 0.5rem 1.5rem;
    background-color: #777;
    font-size: 15px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
  
button:hover {
    background-color: #999;
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
