* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #1c2029;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
}

.top-icons {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.icon-right {
  display: flex;
  gap: 10px;
}

.circle-icon {
  width: 30px;
  height: 30px;
  background-color: #ffc107;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c2029;
  cursor: pointer;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  width: 120px;
  height: auto;
}

h1 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 40px;
  text-align: center;
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 12px 15px;
  background-color: #2a2e39;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 14px;
}

input::placeholder {
  color: #6c757d;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  margin-top: 8px;
}

.forgot-password a {
  color: #ffc107;
  text-decoration: none;
  font-size: 14px;
}

.login-button {
  width: 100%;
  padding: 12px;
  background-color: #ffc107;
  color: black;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
}

.register {
  text-align: center;
  font-size: 14px;
}

.register span {
  color: white;
}

.register a {
  color: #ffc107;
  text-decoration: none;
  margin-left: 5px;
}
