| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- .login-container {
- min-height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 50%, #f8faff 100%);
- position: relative;
- overflow: hidden;
- }
- .bg-decoration {
- position: absolute;
- border-radius: 50%;
- filter: blur(80px);
- opacity: 0.4;
- pointer-events: none;
- }
- .bg-decoration-1 {
- width: 400px;
- height: 400px;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- top: -100px;
- left: -100px;
- animation: float 8s ease-in-out infinite;
- }
- .bg-decoration-2 {
- width: 300px;
- height: 300px;
- background: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
- bottom: -50px;
- right: -50px;
- animation: float 6s ease-in-out infinite reverse;
- }
- .bg-decoration-3 {
- width: 250px;
- height: 250px;
- background: linear-gradient(135deg, #764ba2 0%, #00d4ff 100%);
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- animation: pulse 4s ease-in-out infinite;
- }
- @keyframes float {
- 0%, 100% {
- transform: translate(0, 0);
- }
- 50% {
- transform: translate(30px, 30px);
- }
- }
- @keyframes pulse {
- 0%, 100% {
- opacity: 0.2;
- transform: translate(-50%, -50%) scale(1);
- }
- 50% {
- opacity: 0.4;
- transform: translate(-50%, -50%) scale(1.1);
- }
- }
- .login-box {
- background: rgba(255, 255, 255, 0.9);
- backdrop-filter: blur(20px);
- border-radius: 24px;
- padding: 48px;
- width: 100%;
- max-width: 440px;
- box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15), 0 8px 25px rgba(118, 75, 162, 0.1);
- border: 1px solid rgba(102, 126, 234, 0.2);
- position: relative;
- z-index: 1;
- }
- .login-header {
- text-align: center;
- margin-bottom: 40px;
- }
- .logo-icon {
- width: 64px;
- height: 64px;
- margin: 0 auto 20px;
- border-radius: 16px;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32px;
- box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
- animation: glow-pulse 2.5s ease-in-out infinite;
- }
- .login-logo {
- width: 80px;
- height: 80px;
- margin: 0 auto 20px;
- display: block;
- object-fit: contain;
- filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
- }
- @keyframes glow-pulse {
- 0%, 100% {
- box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
- }
- 50% {
- box-shadow: 0 8px 40px rgba(102, 126, 234, 0.5);
- }
- }
- .login-title {
- font-size: 28px;
- font-weight: 800;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00d4ff 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
- margin-bottom: 8px;
- }
- .login-subtitle {
- color: #64748b;
- font-size: 15px;
- font-weight: 500;
- }
- .login-form {
- display: flex;
- flex-direction: column;
- gap: 24px;
- }
- .form-group {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
- .form-label {
- font-size: 14px;
- font-weight: 600;
- color: #1e293b;
- }
- .form-input {
- padding: 14px 18px;
- border: 1px solid rgba(102, 126, 234, 0.25);
- border-radius: 12px;
- font-size: 15px;
- background: rgba(255, 255, 255, 0.8);
- transition: all 0.3s ease;
- outline: none;
- }
- .form-input:focus {
- border-color: #667eea;
- box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
- background: #fff;
- }
- .form-input::placeholder {
- color: #94a3b8;
- }
- .password-input-wrapper {
- position: relative;
- }
- .password-input {
- width: 100%;
- padding-right: 56px;
- }
- .toggle-password-btn {
- position: absolute;
- right: 8px;
- top: 50%;
- transform: translateY(-50%);
- background: none;
- border: none;
- font-size: 20px;
- cursor: pointer;
- padding: 8px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 8px;
- transition: background 0.2s ease;
- }
- .toggle-password-btn:hover {
- background: rgba(102, 126, 234, 0.1);
- }
- .error-message {
- background: rgba(239, 68, 68, 0.1);
- border: 1px solid rgba(239, 68, 68, 0.3);
- color: #dc2626;
- padding: 12px 16px;
- border-radius: 10px;
- font-size: 14px;
- font-weight: 500;
- text-align: center;
- }
- .login-btn {
- padding: 16px;
- border: none;
- border-radius: 12px;
- font-size: 16px;
- font-weight: 700;
- color: white;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- cursor: pointer;
- transition: all 0.3s ease;
- box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
- }
- .login-btn:hover:not(:disabled) {
- transform: translateY(-2px);
- box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
- background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
- }
- .login-btn:active:not(:disabled) {
- transform: translateY(0);
- }
- .login-btn:disabled {
- opacity: 0.6;
- cursor: not-allowed;
- }
|