* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000;
    color: #333;
    text-align: center;
}
@media(min-width: 800px) {
.navbar {
    width: 100%;
    padding: 30px;
    background: #151718;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    position: relative;
}

.navbar .logo a img{
    position: absolute;
    left: 5%;
    height: 45%;
    margin-top: -15px;
}

.links{
    list-style: none;
    display: flex;
    gap: 2rem
}

.links li a {
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);

    /* Centrage de l'icône avec flex */
    display: inline-flex;
    align-items: center;
    gap: 6px; /* espace entre icône et texte */
}

.links li a:hover{
    color: white;
    text-shadow: 0 0 10 px white;
}

.btns {
    position: absolute;
    right: 2%;
    display: flex;
}
.connexion {
    padding: 0.5rem 1.5rem;
    border-radius: 500px;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #151718;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.connexion:hover{
    background: white;
    box-shadow: 0 0 25px white;
}

}

@media(max-width: 800px) {
.navbar {
    width: 100%;
    padding: 30px;
    background: #151718;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    position: relative;
}

.navbar .logo a img{
    position: absolute;
    left: 5%;
    height: 20%;
    margin-top: -5px;
}

.links{
    list-style: none;
    display: flex;
    gap: 2rem
}

.links li a {
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);

    /* Centrage de l'icône avec flex */
    display: inline-flex;
    align-items: center;
    gap: 6px; /* espace entre icône et texte */
}

.links li a:hover{
    color: white;
    text-shadow: 0 0 10 px white;
}

.btns {
    position: absolute;
    right: 2%;
    display: flex;
}
.connexion {
    padding: 0.5rem 1.5rem;
    border-radius: 500px;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #151718;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.connexion:hover{
    background: white;
    box-shadow: 0 0 25px white;
}

}



button.primary{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(170, 0, 255);
    border: 1px solid rgb(170, 0, 255);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    
}

button.primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(170, 0, 255, 0.45);
}

button.primary:active{
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 7px 24px rgba(255, 255, 255, 0.5);
    transition: 200ms;
}

button.primary-disabled{
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(170, 0, 255, 0.4);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    cursor: not-allowed;
    font-size: 18px;
}



button.secondary{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(255, 255, 255, 0.2);
    border: 1px solid rgb(255, 255, 255, 0.001);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    
}

button.secondary:hover{
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgb(255, 255, 255, 0.2);
}

button.secondary:active{
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 7px 24px rgba(255, 255, 255, 0.5);
    transition: 200ms;
}

button.secondary-disabled{
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    cursor: not-allowed;
    font-size: 18px;
}



button.success{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(57, 181, 74);
    border: 1px solid rgb(57, 181, 74, 0.3);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    
}

button.success:hover{
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgb(57, 181, 74, 0.3)
}

button.success:active{
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 7px 24px rgba(255, 255, 255, 0.5);
    transition: 200ms;
}

button.success-disabled{
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(57, 181, 74, 0.3);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    cursor: not-allowed;
    font-size: 18px;
}


button.danger{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(230, 46, 73);
    border: 1px solid rgb(230, 46, 73, 0.4);;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    
}

button.danger:hover{
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgb(230, 46, 73, 0.4);
}

button.danger:active{
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 7px 24px rgba(255, 255, 255, 0.5);
    transition: 200ms;
}

button.danger-disabled{
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 12px;
    background: rgb(230, 46, 73, 0.4);;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    cursor: not-allowed;
    font-size: 18px;
}

content a{
    font-size: 18px;
    font-weight: 400;
    color: rgb(170, 0, 255);
    background-color: rgb(170, 0, 255, 0.3);
    text-decoration: none;
    padding-left: 5px;
    padding-right: 6px;
    padding-top: 2px;
    padding-bottom: 5px;
    border-radius: 10px;
    transition: 150ms;
}

content a:hover{
    color: rgb(255, 255, 255, 0.7);
    background-color:rgb(170, 0, 255, 0.7);
    
}

content a::before {
  content: "🔗";
  font-size: 15px;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  margin-right: 6px;
}






h1 {
    font-size: 45px;
    color: #fff;
    padding: 10px;
}

h2 {
    font-size: 24px;
    color: #fff;
    padding: 10px;
}

p {
    font-size: 18px;
    padding: 5px;
    color: rgba(255, 255, 255, 0.65);
}

b {
    font-size: 18px;
    font-weight: 600;
    padding: 5px;
    color: rgba(255, 255, 255, 0.65);
}

hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.17);
    margin-right: 25%;
    margin-left: 25%;
    margin-top: 60px;
    margin-bottom: 60px;
}

input{
    border: 2px solid transparent;
    padding: 7px;
    font-size: 17px;
    font-weight: 400;
    background-color: rgb(255, 255, 255, 0.05);
    color: white;
    border-radius: 5px;

}

input:focus{
    border: 2px solid rgba(255, 255, 255, 0.05);
    background-color: rgb(255, 255, 255, 0.07);
    outline: none;

}

input:focus::placeholder{
    color: rgb(255, 255, 255, 0.6);
}
