/* General Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #182854;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-box {
  background-color: #ecf1fe;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 70px 30px;
  width: 100%;

  text-align: center;
}

.logo {
  text-align: center;
}

.logo img {
  text-align: center;
  width: 65%;
  padding-bottom: 30px;
  max-width: 300px;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #888f92;
}

.input-group input {
  width: 100%;
  padding: 10px 0;
  border: 0px solid #ccc;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  border-bottom: 1px solid #7183b5;
}

input::placeholder {
  color: #232831;
  font-weight: 500;
}

.input-group input:focus {
  outline: none;
}

.btn-signin {
  width: 100%;
  padding: 17px 12px;
  background-color: #ff9900;
  color: #000;
  border: none;
  border-radius: 16px;
  font-size: 15px !important;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.width-reudce {
  width: 90%;
}

.btn-signin:hover {
  background-color: #ff7f00;
}

.links {
  margin-top: 30px;
  text-align: left;
}

.links hr {
  border: 1px dashed #394a7c;
  margin: 15px 0;
}

.links p {
  font-size: 14px;
}

.links p span {
  color: #888f92;
  font-size: 15px;
  font-weight: 400;
}

.links a {
  color: #232831;
  font-weight: 400;
}

.links a:hover {
  text-decoration: underline;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.card {
  background-color: #34495e;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header {
  font-size: 40px;
}

.icon {
  display: block;
}

.number {
  font-size: 36px;
  font-weight: bold;
}

p {
  margin-top: 10px;
  font-size: 14px;
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 600px) {
  .btn-signin {
    font-size: 14px;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
}

@media (max-width: 480px) {
}

@media (1024px <= width) {
  .width-reudce {
    width: 800px;
  }
}
