﻿.recovery-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.logo-form {
    width: 200px;
}
.left-panel {
  display: flex;
  grid-column: 1/2;
  justify-content: center;
}
.left-panel img {
  margin: 0px auto 0px auto;
  width: 100%;
}

.right-panel {
  grid-column: 2/3;
  justify-self: center;
  align-self: center;
}

.form-container {
  border: hidden;
}

.reset-form {
  max-width: 400px;
}
.reset-form img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.reset-form .form-title {
  margin-bottom: 30px;
}
.reset-form .form-help-message {
  margin-top: 15px;
}

.btn-reset-password {
  margin-right: 5px;
}

@media (max-width: 500px) {
  .recovery-page {
    display: grid;
    grid-template-columns: 1fr;
  }

  .left-panel {
    display: none;
  }

  .right-panel {
    grid-column: 1/3;
  }
}
