Spaces:
Sleeping
Sleeping
File size: 2,793 Bytes
4d5c005 |
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
:root {
--primary-color: #00FFA3;
--background-color: #13111C;
--card-background: #1E1B2E;
--text-color: #ffffff;
--error-color: #ff4444;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
background: var(--background-color);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.auth-container {
width: 100%;
max-width: 420px;
padding: 20px;
}
.auth-card {
background: var(--card-background);
padding: 40px;
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.auth-title {
color: var(--primary-color);
font-size: 2.5rem;
text-align: center;
margin-bottom: 10px;
font-weight: 700;
}
.auth-subtitle {
color: var(--text-color);
text-align: center;
opacity: 0.7;
margin-bottom: 30px;
}
.auth-form {
display: flex;
flex-direction: column;
gap: 20px;
}
.form-group {
position: relative;
}
.input-icon {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 1.2rem;
opacity: 0.7;
}
.auth-input {
width: 100%;
padding: 15px 15px 15px 45px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
background: rgba(255, 255, 255, 0.05);
color: var(--text-color);
font-size: 1rem;
transition: all 0.3s ease;
}
.auth-input:focus {
outline: none;
border-color: var(--primary-color);
background: rgba(255, 255, 255, 0.1);
}
.auth-input::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.auth-button {
background: var(--primary-color);
color: var(--background-color);
border: none;
padding: 15px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
}
.auth-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 255, 163, 0.4);
}
.auth-footer {
text-align: center;
color: var(--text-color);
margin-top: 30px;
font-size: 0.9rem;
opacity: 0.7;
}
.auth-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.auth-link:hover {
opacity: 0.8;
}
.error-messages {
background: rgba(255, 68, 68, 0.1);
border: 1px solid var(--error-color);
border-radius: 10px;
padding: 15px;
}
.error-message {
color: var(--error-color);
font-size: 0.9rem;
text-align: center;
}
/* Responsive Design */
@media (max-width: 480px) {
.auth-card {
padding: 30px 20px;
}
.auth-title {
font-size: 2rem;
}
} |