* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
  }
  body {
    background-color: #e8edf2;
  }
  div.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    padding: 30px;
    box-shadow: 0 50px 50px -50px darkslategray;
    border-radius: 30px;
  }
  
  div.container div.myform {
    width: 400px;
    margin-right: 30px;
    height: 500px;
  }
  
  div.container div.myform h1 {
    color: #1c1c1e;
    margin-bottom: 40px;
    font-size: xx-large;
    font-weight: bolder;
    text-align: center;
  
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  div.container div.myform input {
    /* border: none; */
    outline: none;
    border-radius: 0;
    width: 100%;
  
    /* border-bottom: 2px solid #1c1c1e; */
    border-bottom: 1px solid grey;
    border-top: 1px solid grey;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    margin-bottom: 20px;
    /* padding: 18px 0; */
    padding: 15px;
    font-size: 15px;
    /* color: rgb(101, 11, 11);
    outline: rgb(95, 9, 9); */
    /* border: red; */
    /* border-color:; */
  }
  div.container div.myform button {
    color: white;
    background-color: #0b8f4f;
    border: none;
    outline: none;
    border-radius: 7px;
    font-size: 20px;
    padding: 12px 30px;
  
    align-items: center;
    margin-left: 140px;
    /* left: -50px; */
    cursor: pointer;
  }
  div.container div.myform button :hover {
    background: black;
    color: black;
  }
  div.container div.image img {
    width: 300px;
  }
  h2 {
    margin-top: 2px;
    padding: 10px;
  }
  
  label {
    /* position: absolute; */
  
    /* left: 20px; */
    /* background: rgb(247, 238, 238); */
    /* padding: 8px 3px; */
    position: relative;
    border-color: rgb(18, 14, 14);
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    /* padding: 50px 50px; */
    /* height: 20px; */
    /* margin-top: 20px; */
    margin-top: -20px;
  }
  p {
    margin-top: 40px;
    text-align: center;
  }
  button :hover {
    background-color: black;
    cursor: pointer;
    outline: #1c1c1e;
    border: none;
  }
  a {
    text-decoration: none;
    color: blue;
  }
  a {
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    color: red;
  }
  .inputgroup {
    margin-bottom: 20px;
    padding: 5px 10px;
  }