@font-face {
  font-family: 'frankg';
  font-weight: 400;
  font-display: block;
  src: url('frankg-regular.woff2') format('woff2'),
    url('frankg-regular.woff') format('woff'),
    url('frankg-regular.otf') format('OpenType');
}

@font-face {
  font-family: 'frankg';
  font-weight: 700;
  font-display: block;
  src: url('frankg-bold.woff2') format('woff2'),
    url('frankg-bold.woff') format('woff'),
    url('frankg-bold.otf') format('OpenType');
}

body {
  direction: rtl;
  background: white;
  color: #0078be;
  text-align: center;
  padding: 50px;
  font-size: 18px;
  font-family: 'frankg', Times;
}

header .logo {
  max-width: 150px;
}

header .family-logo-wrapper {
  width: 460px;
  text-align: right;
  margin: 0 auto;
}

header .family-logo {
  max-width: 80px;
  margin-right: 43px;
}

header h1 {
  font-weight: bold;
  font-size: 60px;
  margin-bottom: .25em;
  margin-top: 0;
}

header p {
  font-size: 20px;
}

form {
  width: 460px;
  margin: 0 auto;
  text-align: right;
}

form .row {
  margin: 20px 0 40px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

form label small {
  display: block;
  font-weight: normal;
  font-size: 15px;
}

form input {
  width: 100%;
  width: 200px;
  flex-grow: 1;
  font-size: 16px;
  border: 1px solid #0078be;
  padding: 6px 8px;
  border-radius: 3px;
}

form .row.form-actions {
  text-align: center;
  justify-content: center;
}

form button {
  font-size: 16px;
  background: #0078be;
  color: white;
  border-radius: 8px;
  padding: 8px 24px;
}

section.greeting {
  width: 500px;
  margin: 40px auto;
  display: flex;
}

section.greeting .profile-pic {
  width: 60px;
  flex-grow: 1;
}

section.greeting .profile-pic img {
  max-width: 60px;
  border: 1px solid #d3d6db;
}

section.greeting .content {
  flex-grow: 1;
  margin-right: 6px;
  padding: 12px 12px 12px 36px;
  border: 1px solid #d3d6db;
  color: black;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.3;
  text-align: right;
}

section.greeting .content h3 {
  font-size: 14px;
  color: #141823;
  font-weight: bold;
  margin: 0 0 .2em;
}

.content .share {
  margin-top: 16px;
}

.share a {
  display: inline-block;
  margin: 8px 0 0 8px;
}

.share a img {
  max-width: 24px;
}

a, a:hover {
  color: #0078be;
  text-decoration: underline;
}

::placeholder {
  color: #ccc ;
}

a.btn-link {
  display: inline-block;
  font-size: 16px;
  background: #0078be;
  color: white;
  border-radius: 8px;
  padding: 8px 24px;
  text-decoration: none;
}