1
0
This repository has been archived on 2025-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
2025-04-14 16:50:30 +08:00

48 lines
911 B
CSS

.auth-container {
background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
min-height: 100vh;
display: flex;
align-items: center;
padding: 2rem;
}
.auth-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 1rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
overflow: hidden;
max-width: 400px;
margin: 0 auto;
transition: transform 0.3s ease;
}
.auth-card:hover {
transform: translateY(-5px);
}
.auth-input-group {
position: relative;
margin-bottom: 1.5rem;
}
.auth-input {
width: 100%;
padding: 1rem 1rem 1rem 3rem;
border: 2px solid #e5e7eb;
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.auth-input:focus {
border-color: #6366f1;
outline: none;
}
.auth-icon {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #6b7280;
}