:root {
  --shadeswhite: rgba(255, 255, 255, 1);
}

body {
  display: grid;
  place-items: center;
  height: 100vh; /* Use the full height of the viewport */
  margin: 0; /* Remove default margin */
}

.log-in {
  display: flex;
  flex-direction: column;
  width: 300px;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  position: relative;
  background-color: var(--shadeswhite);
  border-radius: 4px;
}

.log-in .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.log-in .image {
  position: relative;
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.log-in .text-wrapper {
  position: relative;
  flex: 1;
  height: 22px;
  font-family: "Open Sans-ExtraBold", Helvetica;
  font-weight: 800;
  color: #1f7a8c;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.log-in .header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: transparent;
}

.log-in .title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Manrope-Bold", Helvetica;
  font-weight: 700;
  color: #022b3a;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
}

.log-in .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  /*position: relative;*/
  align-self: stretch;
  width: 100%;
  /*flex: 0 0 auto;*/
}

.log-in .label {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 19px;
  margin-top: -1px;
  font-family: "Manrope-SemiBold", Helvetica;
  font-weight: 600;
  color: #022b3a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.log-in .bar {
  display: flex;
  width: 100%;
  align-items: center;
}

.log-in .bar input {
  height: 43px;
  padding-left: 8px;
  width: 100%;
  border-radius: 4px;
  border: 1.5px solid;
  border-color: #1f7a8c;
}

.log-in .text {
  position: relative;
  flex: 1;
  height: 19px;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  color: #022b3a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.log-in .active-typing {
  position: absolute;
  width: 1px;
  height: 13px;
  top: 14px;
  left: 122px;
  object-fit: cover;
}

.log-in .left-text-wrapper {
  display: flex;
  align-items: center;
  gap: 68px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.log-in .left-text {
  position: relative;
  flex: 1;
  height: 19px;
  margin-top: -1px;
  font-family: "Manrope-SemiBold", Helvetica;
  font-weight: 600;
  color: #022b3a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.log-in .div-wrapper {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 4px;
  border: 1px solid;
  border-color: #022b3a;
}

.log-in .text-2 {
  position: relative;
  flex: 1;
  height: 10px;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  color: #022b3a;
  font-size: 7px;
  letter-spacing: 2.8px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.log-in .CTA {
  all: unset;
  box-sizing: border-box;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #1f7a8c;
  border-radius: 4px;
  cursor: pointer;
}

.log-in .label-2 {
  position: relative;
  width: fit-content;
  font-family: "Manrope-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--shadeswhite);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.log-in form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px; /* Adjusts space between form elements */
    /* More styles as needed */
}