Spaces:
Sleeping
Sleeping
File size: 1,697 Bytes
5af9683 | 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 | * {
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;
} |