html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Lato;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100%;
  justify-content: center;
  opacity: 0.88;
  background: linear-gradient(135deg, #00BC66 0%, #00A75B 100%);
}

.card {
    width: 360px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    border: 1px solid #DBE0EB;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 35px 20px;
    
}

.headerWrapper {
    width: 100%;
}

.logo {
    width: 125px;
}

h3 {
  margin-top: 25px;
}

img {
    width: 100%;
    height: 100%;
}

.btnWrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

label {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    line-height: 1;
    margin: 0;
    color: #828599;
    font-weight: 700;
    margin-top: 20px;
}

input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #bec0cd;
    font-size: 16px;
    padding: 4px;
    margin-bottom: 20px;
}

button {
  box-shadow: 0 0 1px black;
    border-color: #00BC66;
    background-color: #00BC66;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    padding: 8px;
    letter-spacing: .5px;
    margin-top: 50px;
}