File size: 1,383 Bytes
06c40d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | @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;
} |