

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1d2671, #c33764);
    color: #fff;
}

/* Main Heading */
body > h1 {
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Card Container */
.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    width: 320px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Counter Title */
.container h1 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Counter Number */
#count {
    font-size: 60px;
    font-weight: 600;
    margin: 20px 0 30px;
    color: #ffeb3b;
    transition: transform 0.2s ease;
}

/* Buttons */
button {
    width: 130px;
    padding: 12px;
    margin: 8px 5px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Increment Button */
#increment {
    background: linear-gradient(135deg, #00c6ff, #2d5f9b);
    color: #fff;
}

#increment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,114,255,0.6);
}

/* Decrement Button */
#decrement {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
}

#decrement:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,75,43,0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000, #444);
}

.box {
  background: #fff;
  padding: 30px;
  width: 300px;
  border-radius: 10px;
  text-align: center;
}

.box h2 {
  margin-bottom: 20px;
}

.box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #999;
}

.box button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.box button:hover {
  background: #333;
}

.result {
  margin-top: 15px;
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000000, #333333);
}

.login-box {
  width: 320px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.input-box {
  position: relative;
  margin-bottom: 25px;
}

.input-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  outline: none;
  border-radius: 5px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 10px;
  color: #666;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}

.input-box input:focus + label,
.input-box input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #000;
}

.password-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}

button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #333;
}


 