body{
  background: #0D1117;
  font-family: 'Segoe UI', Sans-Serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container{
  background: #161B22;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #30363D;
  width: 320px;
}

.login-title{
  color: #E6EDF3;
  text-align: center;
  margin-bottom: 24px;
}

.input-group{
  margin-bottom: 16px;
}

.input-group label{
  display: block;
  color: #7D8590;
  font-size: 14px;
  margin-bottom: 6px;
}

.input-group input{
  width: 100%;
  padding: 10px;
  background: #0D1117;
  border: 1px solid #30363D;
  border-radius: 6px;
  color: #E6EDF3;
  font-size: 14px;
}

.input-group input:focus{
  outline: none;
  border-color: #00D9FF;
}

.login-btn{
  width: 100%;
  padding: 10px;
  background: #00D9Ff;
  color: #0D1117;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
}

.login-btn:hover{
  opacity: 0.9;
}

.signup-text{
  text-align: center;
  color: #7D8590;
  font-size: 14px;
  margin-top: 20px;
}

.signup-text a{
  color: #00D9FF;
  text-decoration: none;
}
