@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

*,
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: linear-gradient(90deg, #ffffff, #fff7e2, #ffeec5, #ffe6a8, #ffde8b, #ffd66d, #ffcf4c, #ffc720);*/
}

.containerc {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: 'login';
  box-shadow: 0 0 17px 10px rgb(0 0 0 / 30%);
  border-radius: 20px;
  background: white;
  overflow: hidden;
  width: 450px;
}
.login {
  grid-area: login;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
}
.login h3.title {
  margin: 15px 0;
}

.login-btn {
  width: 68%;
  padding: 10px;
  color: white;
  /*background: linear-gradient(90deg, #ffc720, #ffc720, #ffc720, #ffc720, #ffc720, #ffc720, #ffc720, #ffc720);*/
  background-color: dimgrey;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
}
