
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;

  }

  body {
    font-family: sans-serif;
  }
 img{
  width:400px;
  margin:0 30px;
 }
  form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  
    width:500px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding:2rem 2rem;
    margin-bottom: 0.5rem;
    height: 60vh;
  }
  .container{
    display: flex;
    justify-content: center;
    padding:30px;
    
  }

  .title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  label {
    display: block;
    margin-bottom: 5px;
  }
  form div input {
    width:100%;
    height: 40px;
    border-radius: 8px;
    outline: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #c4c4c4;
    padding: 0 40px;

  }
  form div {
    position: relative;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
  }
  input:focus {
    border: 2px solid #f2796e;
  }

  form div i {
    position: absolute;
    padding: 10px;
  }
  .failure-icon,
  .error {
    color: red;
  }

  .success-icon {
    color: green;
  }

  .error {
    font-size: 14.5px;
    margin-top: 5px;
  }
  .success-icon,
  .failure-icon {
    right: 0;
    opacity: 0;
  }

  .btn {
    text-align: center;
    background-color:#c28ce4;
    border:none;
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding:0.8rem 2rem;
    transition:transform ,1s;

  }
  .btn__tb{
    margin:0;
    padding:0.5rem 1rem;
  }
  .btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    gap:40px;
  }
  .btn:hover{
    transform: scale(1.1);
    opacity:0.8;
  }
#table{
    border-collapse: collapse;
    font-size: 0.9em;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    height:auto;
    margin:0 auto;
    width:80%;
  
}
#table thead tr{
    background-color:#c28ce4;
    color: #ffffff;
    text-align: center;
}
#table th,#table td{
    padding: 8px 10px;
}
#table tbody tr {
    border-bottom: 1px solid #dddddd;
}
#table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
#table tbody tr:last-of-type {
    border-bottom: 2px solid #c28ce4}
#table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

