@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  box-sizing: border-box;
}

body {
  background: white;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
  background-color: white;
}

.content-container-wrapper {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr 1fr;
  background-color: white;
}

.side {
  flex-grow: 1;
  display: flex;
  background-color: white;
}

.side img {
  width: 100%;
  height: 100vh;
  object-fit: fill;
}

.content-wrapper-side {
  flex-grow: 1;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  background-color: white;
}

.content-wrapper-side .side-image {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 230px;
  height: 120px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 500;
  color: #6D6D6D;
  margin-top: 1.7em;
}

.logo .cainta-dbms {
  height: 50px;
  width: 300px;
}

.bottom-content {
  margin-top: 50px;
}

.wrapper-list {
  list-style-type: none; 
}

.wrapper-label {
  font-size: 16px;
  font-weight: 400;
  color: #6D6D6D;
  margin-right: 30px;
}

.content-wrapper .content-label:hover,
.credits-label:hover,
.wrapper-label:hover {
  text-decoration: none;
  color: #6D6D6D;
}

.credits-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  font-size: 14px;
  color: #2244AA;
  margin-top: 25px;
}

.credits-label:hover{
  text-decoration: none;
  color: #6D6D6D;
}

.credits-label img {
  height: 15px;
  width: 15px;
  margin-right: 5px;
}

.login-form {
  width: 440px;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 0;
}

.login-form label {
  font-size: 16px;
  font-weight: 400;
  padding-left: 15px;
  padding-bottom: 0px;
}

.login-form button {
  width: 100%;
  height: 35px;
  background-color: #2244AA;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 2em;
  text-align: center;
}

.login-form button:hover {
  background-color: #1c1aaf;
}

.input-box {
  background: #ffffff;
  width: 100%;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 30px;
  padding: 5px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.input-box input {
  background: #ffffff;
  width: 100%;
  height: 100%;
  padding: 5px;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.input-box img {
  width: 30px;
  height: 15px;
  padding-right: 10px;
  cursor: pointer;
}

.form-links {
  text-align: center;
}

a {
  text-decoration: none;
  color: #1113a1;
  padding: 5px;
  padding-left: 15px;
  font-weight: 500;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
  color: #1c1aaf;
}

.input-box input::placeholder {
  color: #7D7D7D;
  font-size: 14px; 
  padding-left: 10px;
}

.incorrect-password,
.email-not-found {
  color: #d4070f;
  font-size: 14px;
  font-weight: 400;
  padding-left: 15px;
  margin-bottom: 5px;
}

.error-list {
  list-style: none;
  padding: 0;
}

.success-message {
  color: #0c8900;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 10px;
  }

  .logo {
    margin-top: 10px;
  }

  .login-form {
    width: 100%;
  }
}
