* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 380px;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.top-section {
  background: #116196;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.avatar {
  width: 120px;
  height: 120px;
  background: url('https://cdn-icons-png.flaticon.com/512/4140/4140037.png') no-repeat center/cover;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.bottom-section {
  padding: 30px 20px;
}

.user-login-title {
  background-color: #1b1b2f;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.input-group i {
  color: #333;
  margin-right: 10px;
}

.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}

.options a {
  text-decoration: none;
  color: #777;
}

.login-btn {
  width: 100%;
  padding: 10px;
  background-color: #28a745; /* Green */
  color: white;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: Blue;
}


.create-account {
  display: block;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  font-size: 14px;
  color: #000;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo {
  width: 120px;
  height: auto;
  border-radius: 50%; /* Optional: remove if you want square logo */
  background: #fff;
  padding: 10px;
}
.simple-login-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}
