.header {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cos-head {
  padding: 16px;
  box-shadow: 0px 2px 8px 0px rgba(102, 102, 102, 0.08);
}

header > a {
  cursor: pointer;
  
}
.login-form {
  padding: 10px;
}
.cos-body {
  margin-top: 200px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 32px;
}

.cos-body__title {
  text-align: center;
  color: #3F3F95;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 60px;
}

.form-group__input {
  border: none;
  outline: none;
  background: #f4f4f4;
  padding: 14px 12px;
  border-radius: 4px;
  max-width: 320px;
  width: 320px;
  margin-bottom: 16px;
}

.password-container {
  position: relative;
  cursor: pointer;
}

.show-hide-password {
  position: absolute;
  top: 8px;
  right: 8px;
}

.login-btn {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  background-color: #3F3F95;
  margin-top: 40px;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.login-btn:hover {
    opacity: 0.5;
    
}
input::placeholder {
  color: #b7b7b7;
  font-size: 14px;
}
