Spaces:
Sleeping
Sleeping
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: Arial, sans-serif; | |
| } | |
| body { | |
| background: #f4f6fb; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| min-height: 100vh; | |
| padding: 20px; | |
| } | |
| /* LOGIN BOX */ | |
| .login-container { | |
| width: 360px; | |
| background: #fff; | |
| padding: 30px; | |
| border-radius: 18px; | |
| box-shadow: 0 10px 25px rgba(0,0,0,.08); | |
| text-align: center; | |
| } | |
| /* LOGO */ | |
| .logo img { | |
| width: 65px; | |
| margin-bottom: 15px; | |
| } | |
| /* TITRE */ | |
| h1 { | |
| font-size: 28px; | |
| margin-bottom: 8px; | |
| } | |
| /* TEXTE */ | |
| p { | |
| color: #666; | |
| margin-bottom: 18px; | |
| font-size: 14px; | |
| } | |
| /* INPUT GROUP */ | |
| .input-group { | |
| text-align: left; | |
| margin-bottom: 15px; | |
| } | |
| label { | |
| display: block; | |
| margin-bottom: 6px; | |
| font-size: 13px; | |
| } | |
| /* INPUTS */ | |
| input { | |
| width: 100%; | |
| padding: 12px; | |
| border: 1px solid #d7deea; | |
| border-radius: 10px; | |
| font-size: 14px; | |
| outline: none; | |
| } | |
| /* FOCUS (CHANGÉ BLEU → BOURGEOIS) */ | |
| input:focus { | |
| border-color: #7b1e1e; | |
| } | |
| /* OPTIONS */ | |
| .options { | |
| display: flex; | |
| justify-content: space-between; | |
| margin-bottom: 15px; | |
| font-size: 13px; | |
| } | |
| /* LINKS (CHANGÉ BLEU → BOURGEOIS) */ | |
| .options a { | |
| color: #7b1e1e; | |
| text-decoration: none; | |
| } | |
| /* BUTTON (CHANGÉ BLEU → BOURGEOIS) */ | |
| button { | |
| width: 100%; | |
| padding: 14px; | |
| background: #7b1e1e; | |
| color: white; | |
| border: none; | |
| border-radius: 10px; | |
| font-size: 16px; | |
| cursor: pointer; | |
| } | |
| /* HOVER BUTTON */ | |
| button:hover { | |
| background: #5e1212; | |
| } | |
| /* SIGNUP TEXT */ | |
| .signup { | |
| font-size: 13px; | |
| margin-top: 10px; | |
| } | |
| /* LINKS SIGNUP */ | |
| .signup a { | |
| color: #7b1e1e; | |
| } |