TopUp / styles.css
Reaperxxxx's picture
Rename style.css to styles.css
06c40d2 verified
Raw
History Blame Contribute Delete
1.38 kB
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Orbitron', sans-serif;
}
body {
background: #0a0a0a;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: rgba(20, 20, 20, 0.9);
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 15px #00e1ff;
text-align: center;
width: 90%;
max-width: 400px;
}
h1 {
font-size: 26px;
margin-bottom: 10px;
color: #00e1ff;
}
p {
font-size: 14px;
margin-bottom: 20px;
color: #ccc;
}
.input-group {
margin-bottom: 15px;
text-align: left;
}
label {
font-size: 14px;
color: #aaa;
}
input {
width: 100%;
padding: 10px;
margin-top: 5px;
border: none;
border-radius: 5px;
background: #1a1a1a;
color: #fff;
outline: none;
box-shadow: inset 0 0 10px #00e1ff;
}
button {
width: 100%;
padding: 12px;
margin-top: 10px;
border: none;
background: #00e1ff;
color: #000;
font-weight: bold;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: 0.3s ease-in-out;
}
button:hover {
background: #007a99;
box-shadow: 0 0 15px #00e1ff;
}
#message {
margin-top: 10px;
font-size: 14px;
}