@media screen and (min-width: 476px) {

  html,
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* height: 100vh; */
    padding-top: 1rem;
    margin: 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #d9dde3 100%);
  }

  .container {
    width: 400px;
    /* height: 800px;                  */
    background-color: #fff;
    border: 1px solid #cacaca;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .save-contact-button-row {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 375px;
  }
}