/* Reset some default browser styles (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Body styling */
body {
  background: #1D1A24; /* Deep dark background */
  color: #ffffff;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
    background-image: url("bg.png");
	background-repeat:no-repeat;
	background-position:center
}

/* Container to hold all content centrally */
.container {
  text-align: center;

  /* Create a radial "purple glow" effect.
     Adjust the gradient stop positions and colors as needed. */



  /* Give it some padding so the glow is visible */
  padding: 100px 20px;
  border-radius: 8px;
}

/* Logo container (optional) */
.logo {
  margin-bottom: 20px;
}

.logo img {
  /* Set a suitable width for the logo, or remove if using text only */
  width: 180px;
}

/* Main heading */
h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Company details */
.company-details {
  font-size: 1rem;
  line-height: 1.5;
}

/* You can style the label and value differently if you like */
.label {
  font-weight: bold;
  margin: 20px 0 5px;
}

.value {
  font-weight: normal;
  margin-bottom: 20px;
}
