
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #f0f2f5;
  }
  .dashboard-container{
    margin: 40px;
  }

  
  .login-container {
    width: 300px;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    text-align: center;

    
  }


  
  h2, h1 {
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
  }
  
  .input-box {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .input-box input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .input-box input:focus {
    border-color: #622f07;
  }
  
  .input-box label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #aaa;
    font-size: 1rem;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  
  .input-box input:focus + label,
  .input-box input:not(:placeholder-shown) + label {
    top: 0;
    left: 10px;
    font-size: 0.8rem;
    color: #805041;
  }
  
  button {
    width: 100%;
    margin-top: 10px;
    padding: 0.8rem;
    font-size: 1rem;
    background-color: #828282;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #b4a8a4;
  }
  


.error {
    color: red;
    margin-top: 10px;
}

.register-container {
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
}
th {
    background-color: #f2f2f2;
}
