﻿.page-container {
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #ecf1fd;
}


.page-inner-container {
  width: 885px;
  height: 600px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 15px -5px #000000;
  box-shadow: 0px 3px 15px -5px #000000;
  display: flex;
}

.page-logo {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
}

  .page-logo img {
    width: 400px;
  }


h2 {
  font-size: 32px;
  font-family: 'OpenSans_semibold';
  color: #39b54a;
}

.page-section {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

  .page-section h2 {
    padding-left: 10px;
  }

  .page-section table {
    padding-left: 65px;
  }

  .page-section table td {
    padding-bottom: 15px;
  }

  .page-section label {
    font-size: 16px;
    font-family: 'OpenSans_semibold';
    color: #333;
  }

  .page-section input {
    width: 200px;
    height: 37px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .page-section a {
    font-size: 16px;
    color: #39b54a;
    padding-top: 10px;
    text-decoration: none;
  }

  .page-section button {
    height: 37px;
    background-color: #39b54a;
    color: #ffffff;
    font-family: 'OpenSans_semibold';
    font-size: 16px;
    border: none;
    border-radius: 5px;
  }


