﻿.login-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.left-panel {
    display: flex;
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: center;
    height: calc(100vh - 90px);
    border-radius: 50px;
    display: flex;
    align-items: center;
}
.left-panel img {
  margin: 10px auto 60px auto;
  width: 60%;
}
.main-container {
    width: fit-content;
}
.right-panel {
    grid-column: 2/3;
    grid-row: 2/3;
    justify-self: center;
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 90px);
    padding: 10px;
}

.login-form-container {
    border: hidden;
    display: inline-block;
    width: 100%;
}

.login-form {
    width: 100%;
}
.login-form img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.login-form .form-help-message {
  margin-top: 15px;
}

.btn-login {
    width: 100%;
    height: 40px;
    border-radius: 100px;
    background-color: #0245AA;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin-top: 10px;
    margin-left: 0;
}
.welcome-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 40px;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    min-width: 600px;
}
.welcome-text-container {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.credentials-text {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    margin-top: 16px;
}
.check-text {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.15px;
}
.input-icon-container {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.logo-form {
    width: 200px;
}
.fa-arrow-right {
    margin-right: 5px;
}
.divider {
    width: 1px;
    height: 25%;
    background-color: #0448A6;
    right: 0;
    margin: 0;
}
.card-body {
    width: 100%;
    padding: 0;
}
@media (max-width: 500px) {
    .login-page {
    display: grid;
    grid-template-columns: 1fr;
  }

  .left-panel {
    display: none;
  }
  .divider {
    display: none;
  }
  .right-panel {
      grid-column: 1/3;
  }
}
