/* Account */ .account { display: flex; justify-content: center; background-color: #1a1a1a; } /* Account Div */ .account div { width: 30%; padding: 50px; display: flex; flex-direction: column; text-align: center; } /* Account Div H2 */ .account div h2 { padding: 40px; font-family: NeonSans; font-size: 25px; color: #8c00ff; text-shadow: 0 0 10px #8c00ff, 0 0 20px #8c00ff, 0 0 30px #8c00ff, 0 0 40px #8c00ff; } /* Account Div H3 */ .account div h3 { padding: 10px; font-family: NeonSans; font-size: 20px; background-color: #1a1a1a; color: #f700ff; text-shadow: 0 0 10px #f700ff, 0 0 20px #f700ff, 0 0 30px #f700ff, 0 0 40px #f700ff; } /* Account Div Form */ .account div form { display: flex; flex-direction: column; } /* Account Div Form Input */ .account div form input { padding: 15px; margin: 15px; border: 1px solid #f700ff; border-radius: 5px; font-family: NeonSans; font-size: 20px; background-color: #1a1a1a; color: #f700ff; text-shadow: 0 0 10px #f700ff, 0 0 20px #f700ff, 0 0 30px #f700ff, 0 0 40px #f700ff; } /* Account Div Form Input Placeholder */ .account div form input::placeholder { font-family: NeonSans; color: #f700ff; } /* Account Div Form Button */ .account div form button { padding: 15px; margin: 15px; cursor: pointer; border: 1px solid #ff9d00; border-radius: 5px; font-family: NeonSans; font-size: 20px; background-color: #1a1a1a; color: #ff9d00; text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00, 0 0 30px #ff9d00, 0 0 40px #ff9d00; transition: text-shadow 0.2s linear; } /* Account Div Form Button Hover */ .account div form button:hover { text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00; transition: text-shadow 0.2s linear; } /* Account Form Button */ .account form button { padding: 15px; margin: 15px; margin-bottom: 30px; cursor: pointer; border: 1px solid #ff9d00; border-radius: 5px; font-family: NeonSans; font-size: 20px; background-color: #1a1a1a; color: #ff9d00; text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00, 0 0 30px #ff9d00, 0 0 40px #ff9d00; transition: text-shadow 0.2s linear; } /* Account Form Button Hover */ .account form button:hover { text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00; transition: text-shadow 0.2s linear; } /* Small Screens */ @media screen and (max-width: 1000px) { /* Account */ .account { flex-direction: column; align-items: center; } /* Account Div */ .account div { width: 80%; padding-top: 20px; padding-bottom: 20px; } }