* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: url("image/it-guy.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    backdrop-filter: blur(4px);
    text-shadow: 0px 0px 2px #000;
}

.container {
    color: white;
    padding: 5rem 0;
}

.form {
    width: 60%;
}

.form-heading {
    margin: 1.2rem 0;
}

.main-heading {
    margin: 1.2rem 0;
}

.dot {
    color: #0D6EFD;
}

.form-input {
    background-color: #3f404a !important;
    color: #fff !important;
    border: none !important;
    margin-top: .5rem;
}

::placeholder{
    color: rgb(198, 198, 198) !important;
}

input[type="checkbox"] {
    margin-top: 1.2rem;
}

.login-link{
    text-decoration: none;
    color: #0D6EFD;
}

#thank-you-message {
    display: none;
  }
  
  #thank-you-message.show {
    display: block;
  }

  .swal-footer {
    text-align: center;
  }