|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #0d1117;
|
|
color: #c9d1d9;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
header p {
|
|
font-size: 1.1rem;
|
|
color: #8b949e;
|
|
}
|
|
|
|
|
|
.container {
|
|
background: #161b22;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
|
width: 100%;
|
|
max-width: 600px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
|
|
form label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
form input[type="text"] {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 1px solid #30363d;
|
|
border-radius: 4px;
|
|
background: #0d1117;
|
|
color: #c9d1d9;
|
|
margin-bottom: 1rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
form input[type="text"]::placeholder {
|
|
color: #8b949e;
|
|
}
|
|
|
|
form button {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
background-color: #238636;
|
|
color: #ffffff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
form button:hover {
|
|
background-color: #2ea043;
|
|
}
|
|
|
|
|
|
a.btn {
|
|
display: block;
|
|
width: fit-content;
|
|
padding: 0.75rem 1rem;
|
|
background-color: #238636;
|
|
color: #ffffff;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
transition: background 0.3s ease;
|
|
margin: 20px auto 0 auto;
|
|
}
|
|
|
|
a.btn:hover {
|
|
background-color: #2ea043;
|
|
}
|
|
|
|
|
|
.error {
|
|
color: #f85149;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
|
|
.loading-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(13, 17, 23, 0.95);
|
|
z-index: 9999;
|
|
display: none;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.loading-overlay p {
|
|
margin-top: 1rem;
|
|
font-size: 1.2rem;
|
|
color: #c9d1d9;
|
|
}
|
|
|
|
|
|
.spinner {
|
|
border: 8px solid rgba(255, 255, 255, 0.2);
|
|
border-top: 8px solid #58a6ff;
|
|
border-radius: 50%;
|
|
width: 60px;
|
|
height: 60px;
|
|
animation: spin 1.5s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|