
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7f8;
    color: #333;
    margin: 0;
    padding: 0;
  }

  section {
    padding: 0px 0px;
  }

  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
  }

  form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 25px 30px;
    width: 100%;
    max-width: 330px;
    box-sizing: border-box;
  }

  label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #34495e;
  }

  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: border-color 0.3s;
  }

  input[type="email"]:focus,
  input[type="password"]:focus {
    border-color: #3498db;
    outline: 2px;
  }

  button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
  }

  button:hover {
    background-color: #2980b9;
  }

  /* Responsive layout for smaller screens */
  @media screen and (max-width: 600px) {
    .container {
      flex-direction: column;
      align-items: center;
       width: 100%;
    }

    form {
      width: 100%;
      max-width: 100%;
    }
	.body{
		width:100%;
	}
  }

