Web Code
Login
Sign Up
HTML
CSS
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100% !important; background: #000 !important; } .custom-radio .item_color { display: inline-block; position: relative; } .custom-radio input[type="radio"] { position: absolute; left: 0; width: 50px; height: 50px; opacity: 0; cursor: pointer; } .custom-radio input[type="radio"] + label { color: #333; font-family: Arial, sans-serif; font-size: 14px; width: 50px; height: 50px; margin: 0 5px; border: 2px solid #e3dddd; border-radius: 5px; } .custom-radio input[type="radio"]:checked + label:before { content: ''; position: absolute; position: absolute; width: 25%; height: 50%; border: 2px solid #ffffff; border-top: 0; border-left: 0; transform: rotate(50deg); left: 22px; top: 8px; }
JS
Output