/* <!-- Counter Program mini Project --> */

body{
    background-color: #0a101d;
}
h3{
color: rgba(255, 255, 255, 0.616);
 text-align: center;
 font-family: sans-serif;   
}
h2{
    text-align: center;
    color: white;
    font-family: sans-serif
}
h1 {
  text-align: center;
  color: white;
  font-size: 50px;
  font-family: sans-serif;
}

.card {
  width: 50%;
  height: 300px;
  background-color:  #020617;
  margin: auto;
  border-radius: 25px;
  color: #ec4899;
    margin-bottom: 50px;
}
#countLabel {
  display: block;
  font-size: 50px;
  font-family: sans-serif;
  text-align: center;
  padding: 30px;
}
.btns {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
}
#increment,
#Reset,
#Decrement {
  border-radius: 25px;
  font-family: sans-serif;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border: none;
  color: #111827;

  width: 150px;
  height: 50px;
  margin: 10px;
  cursor: pointer;
}
#increment:hover,
#Decrement:hover,
#Reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
}

/* <!-- Login Form  Show and Hide password  mini project--> */

.set{
    margin-bottom: 100px;
    padding: 50px;
    border: 1px solid gray;
    border-radius: 30px;
    background-color: #111827;
}
.login-card {
  margin: auto;
  max-width: 420px;
  padding: 32px;
  background: #020617;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
  color: #e5e7eb;
}

.login-card h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.login-card .subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #cbd5f5;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: #030712;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e5e7eb;
  outline: none;
  transition: all 0.25s ease;
}

.field input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.45);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.6);
}
#eye{
    background-color: #020617;
    border: none;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    color: white;
    margin:10px 0 0 0 ; 
    padding: 7px;
    font-family: sans-serif;
    
}



/* <!-- Even odd and prime Checker mini project --> */



.card input{
    width: 50%;
    border: none;
    border-radius: 30px;
    padding: 10px;
    margin: 20px 0 0px 130px;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color:white;
}
#num::placeholder {
    color:white; 
    font-family: sans-serif;
    font-size: 20px;
}

.card button{
    background-color: #020617;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin: 20px 0 0px 0px;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color:white;
    cursor: pointer;
}
#result {
    color: white;
    font-size: 20px;
    margin: 80px 0 0px 0px;
    text-align: center;
    font-family: sans-serif;
    font-size: 25px;
}