You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
1.9 KiB
113 lines
1.9 KiB
2 months ago
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
min-height: 100vh;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
background: linear-gradient(75deg, #5c19d8,#5f2df5,#5834f9,#4642fc, #1273db,#45b3f6);
|
||
|
}
|
||
|
|
||
|
.login-container {
|
||
|
background-color: rgb(19, 149, 197);
|
||
|
padding: 2rem;
|
||
|
border-radius: 10px;
|
||
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
||
|
width: 100%;
|
||
|
max-width: 1000px;
|
||
|
margin: 1rem;
|
||
|
}
|
||
|
|
||
|
.login-header {
|
||
|
text-align: center;
|
||
|
margin-bottom: 2rem;
|
||
|
}
|
||
|
|
||
|
.login-header h1 {
|
||
|
color: #7930f7;
|
||
|
font-size: 2rem;
|
||
|
margin-bottom: 0.5rem;
|
||
|
}
|
||
|
|
||
|
.login-header p {
|
||
|
color: #11a5f5;
|
||
|
}
|
||
|
|
||
|
.input-group {
|
||
|
margin-bottom: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.input-group label {
|
||
|
display: block;
|
||
|
margin-bottom: 0.5rem;
|
||
|
color: #555;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
.input-group input {
|
||
|
width: 100%;
|
||
|
padding: 0.75rem;
|
||
|
border: 2px solid #eee;
|
||
|
border-radius: 5px;
|
||
|
font-size: 1rem;
|
||
|
transition: border-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.input-group input:focus {
|
||
|
outline: none;
|
||
|
border-color: #1d89ff;
|
||
|
}
|
||
|
|
||
|
.login-button {
|
||
|
width: 100%;
|
||
|
padding: 0.75rem;
|
||
|
background: #1d89ff;
|
||
|
color: white;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
font-size: 1rem;
|
||
|
font-weight: 600;
|
||
|
cursor: pointer;
|
||
|
transition: background-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.login-button:hover {
|
||
|
background: #1670d2;
|
||
|
}
|
||
|
|
||
|
.form-footer {
|
||
|
margin-top: 1.5rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.form-footer a {
|
||
|
color: #1d89ff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.form-footer a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.error-message {
|
||
|
color: #dc3545;
|
||
|
font-size: 0.875rem;
|
||
|
margin-top: 0.5rem;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
@keyframes shake {
|
||
|
0%, 100% { transform: translateX(0); }
|
||
|
25% { transform: translateX(-10px); }
|
||
|
75% { transform: translateX(10px); }
|
||
|
}
|
||
|
|
||
|
.shake {
|
||
|
animation: shake 0.5s ease-in-out;
|
||
|
}
|