
    <meta charset="UTF-8">
   .
 <meta name="viewport" content=
"width=device-width, initial-scale=1.0">
    <title>Align Input Forms</title>
    <style>
  *{
 background-color: #62A9FFB0;
}
      body {
            font-family: Arial, sans-serif;
            background-color: #62A9FFB0;
            margin: 0;
            padding: 0;
        }

        .form-container {
            width: 200px;
            margin: 50px auto;
            background-color: red;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            font-size: 6px;
            color: #333;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 50%;
            padding: 4px;
            margin-bottom: 4px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 8px;
        }

        input[type="submit"] {
            width: 50%;
            padding: 4px;
            background-color: yellow;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }

        input[type="submit"]:active {
            background-color: yellow;
        }
    </style>
