﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
 background: linear-gradient(to bottom right, #f28200, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  position: relative;
  width: 400px;
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
}

.left-shape {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(to bottom right, #f28200, #ffffff);

  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}

.login-content {
  position: relative;
  z-index: 2;
}

.login-content h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}
.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: #f1f1f1;
}

.button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #f28200, #ffffff);
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}
.button:hover {
  background: #f28200;
  opacity: 1; /* Optional: remove fade if you want full color */
}

.links {
  margin-top: 10px;
  text-align: center;
}
.links a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
}
.links a:hover {
  text-decoration: underline;
}

body {
}
