body
{
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.header
{
    justify-content: space-between;
}
.firstsection
{
    width: 50%;
}
.imagearea
{
    padding: 5px;
    margin: 20px;
}
.mainbody>p
{
    margin-top: 10px;
    width: 50%;
    color: gray;
    text-align: center;

}
.mainbody
{
    margin-top: 100px;
}
.mainbody2 {
  display: flex;
  flex-direction: column; /* stack label and input */
  width: 50%;            /* optional: same width as paragraph */
  margin-top: 15px;
  text-align: left;       /* aligns label to left */
}

.inputbox {
  margin-top: 8px;       /* space between label & input */
  padding: 8px;
  border: 1px solid gray;
  border-radius: 4px;
  margin-bottom: 4px;
}
.passwordbox
{
    margin-top : 8px;
    padding: 8px;
  border: 1px solid gray;
  border-radius: 4px;

}
.continuesec
{
    border: 2px solid #0f172a;
    padding: 10px;
   margin-top: 30px;
    border-radius: 4px;
    width: 100%;
    background-color: #0f172a;
    color: white;
    margin-bottom: 30px;
    
}
.text-end
{
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    width: 100%;
    margin-top: auto;
}
.footer
{
    vertical-align: bottom;
}
.firstsection {
    flex: 1;
    /* width: 50%; */
    
}

footer {
  position: fixed;    /* hamesha fixed position pe rahega */
  bottom: 0;          /* page ke bilkul bottom me */
  left: 0;
  width: 50%;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  color: gray;
  background: #fff;   /* white background so text dikhai de */
}
.secondsection
{
    width: 50%;
    background-image: url();
}
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0047ab, #002f6c);
  color: white;
  text-align: center;
  padding: 150px 20px;
  height: 100vh;
}

.logo-overlay {
  position: absolute;
  top: 65%;
  left: 33%;
  
  transform: translate(-50%, -50%);
  opacity: 0.2; /* transparent effect */
  width: 400px;
}
.alignation
{
    width: 70%;
    
   
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: white;
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  bottom: -120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  z-index: 1;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

