@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-family: "Poppins",sans-serif; background-color: beige; display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; } .container{ background-color: #faf4f5; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); width: 100%; height: 100%; max-width: 450px; max-height: 650px; } h1{ text-align: center; font-size: 1.8em; margin-bottom: 20px; } label{ font-weight: bold; display: block; margin-bottom: 10px; color: #555; } .abc{ margin-top: 10px; } input,select,button{ width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1em; } input:focus, select:focus{ outline: none; border-color: #4caf50; box-shadow: 0 0 5px #218838(0,123,255,0.5); } button{ text-transform: uppercase; margin-top: 10px; background-color: #55AD9B; color: white; border:none; cursor: pointer; font-size: 1.1em; transition: background-color 0.3s ease; } button:hover{ background-color: #218838; } .logo{ height: 70px; width: 70px; display: flex; align-items: center; justify-content:space-between ; } .def{ margin-right: 10px; } .iou{ margin-top: 10px; display: flex; gap: 20px; } .full, .email, .pass{ margin-top: 8px; }