body {
    margin: 0;
    height: 100%;
    display: flex;
}

.gradient-background {
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.sign-in-container {
    background-color: white;
    position: absolute;
}

@media screen and (max-width: 768px) {
  .sign-in-container {
    font-size: 14px;
  }
}

@media screen and (min-width: 1500px) {
  .sign-in-container {
    top: 270px;
    bottom: 350px;
    right: 800px;
    left: 800px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1499px) {
  .sign-in-container {
    top: 87px;
    bottom: 170px;
    left: 467px;
    right: 467px;    
  }
}

.dsd-icon {
    height: 36px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
}

.sign-in-text {
    font-family: Segoe UI;
    font-weight: 500;
    font-size: 24px;
    margin-left: 40px;
    margin-top: -10px;
}

.empty-words {
    color: red;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: -10px;
    font-family: segoe ui;
    font-size: 15px;
}

.email-input {
    font-size: 15px;
    padding-left: none;
    padding-bottom: 7px;
    padding-right: 150px;
    margin-left: 40px;
    margin-top: -1px;
    border: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #0067b8;
}

.email-input:hover {
    border-bottom-color: gray;
}

.email-input:focus {
    outline: none;
}

.forgot-password {
    position: absolute;
    font-family: Segoe UI;
    font-size: 13px;
    color: #0067b8;
    bottom: 140px;
    left: 40px;
}

.forgot-password:hover {
    color: gray;
    text-decoration: underline;
    cursor: pointer;
}

.invalid {
    bottom: 90px;
}

.next-button {
    position: absolute;
    font-family: Segoe UI;
    color: white;
    bottom: 45px;
    right: 40px;
    padding: 6px 40px;
    font-size: 16px;
    border: none;
    background-color: #0067b8;
    cursor: pointer;
}

.next-button:hover {
    background-color: #005ba1;
}