body {
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url(img/bg.jpg);
    background-size: cover;
    background-position: center;
}
.logo{
    position: absolute;
    top: 10px;
    left: 20px;
  }
  .logo img {
    height: 128px;
    width: 128px;
  }
.login-container {
    margin-top: 100px;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 300px;
}
input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 16px;
    outline: none;
}
input:focus {
    border-color: #888;
}
.login-button {
    background: white;
    color: black;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.login-button:hover {
    background: #ddd;
}
.links {
    margin-top: 10px;
    margin-bottom: 10px;
}
#reg{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.links a {
    color: #aaa;
    text-decoration: none;
}
.links a:hover {
    color: white;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
}
.footer {
    position: relative;
    color: white;
    padding: 40px 20px;
    bottom: 0;
    text-align: center;
  }
  .alert {
    margin-bottom: 10px;
    font-size: 14px;
    color:red;
  }