* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: url('image/profilebg.jpeg') no-repeat center center/cover;
      padding:1rem;
      color: #333;
    }

}
    .header {
      display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
 }    

    .header img {
      height: 50px;
width:auto;
}
.header-right
{
  text-align: right;
}
    .header h1 {
      font-size: 2em;
      font-weight: bold;
text-align:right;
margin-top:-50px;
    }
    .header p {
      font-size: 0.95em;
      color: #555;
text-align:right;
    }


    .grid-container {
      display: flex;
      grid-template-rows: 1fr 2fr;
      grid-gap: 30px;
      max-width: 1100px;
      margin:auto;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
    }

    .card {
      background-color: #eaf4fe;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
height:250px;
width:200px;
margin-left:170px;
margin-top:20px;
    }

    .form-card {
      background-color:#518CB4;
      border-radius: 10px;
      padding: 25px;
      color: #fff;
      box-shadow: 0 5px 10px rgba(0,0,0,0.15);
width:500px;
height:300px;
    }

    .form-card h3 {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 15px;

    }

    .input-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .input-group label {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .input-group input,
    .input-group select {
      padding: 6px 10px;
width:180px;
      font-size: 13px;
      border-radius: 5px;
      border: none;
      background-color: #e6f3ff;
    }

    .gender-options {
      display: flex;
      gap: 10px;
    }

    .upload-btn {
      background-color: #548cb4;
      color: #fff;
      padding: 10px 20px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .note {
      font-size: 12px;
      margin-top: 10px;
      color: #333;
    }

    @media (max-width: 768px) {
      .grid-container {
        grid-template-rows: 1fr;
      }
.header {
        flex-direction:row;
        align-items:center;
        gap: 35px;
      }
.header-right {
        justify-content: space-between;
        width: 100%;
align-items:right;
      }
.header h1 {
      font-size: 15px;
      font-weight: bold;
text-align:right;
margin-top:-40px;
margin-right:-10px;
    }
.header p {
      font-size:8px;
margin-top:5px;
      color: #555;
text-align:right;
margin-right:-10px;
    }

}

footer {
      text-align: center;
      font-size: 13px;
      padding: 20px;
      color:  #003366;
      margin-top:20px;
    }

    footer a {
      color: #003366;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }
.button{
	    background-color: #548cb4;
      color: #fff;
      padding: 10px 20px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
	  margin-top:20px;
	  margin-left:300px;
	
}

@media (max-width: 768px) {

.grid-container {
        flex-direction:column;
        width:100%;
align-items:center;
padding:20px;

      }

      .card{
        max-width: 100%;

margin-left:10px;
      }

      .form-card {
        width: 100%;
height:50%;
margin-left:10px;
      }

      .header {
        flex-direction:row;
        align-items:center;
        gap: 15px;
      }

      .header-right {
        justify-content: space-between;
        width: 100%;
      }
    }
