* {
    margin: 0;
    box-sizing: border-box
}

.text {
    color: white;
}

body {
    background:#25003e;
    font-family: Arial, sans-serif;
}

/* Layout principal */
.layout {
    display: flex;
    min-height: 100vh;
    filter: blur(0px);
    transition: filter .3s ease;
}

.layout.blur {
    filter: blur(2px);
    transition: filter .3s ease;
}

/* Partie gauche */
.sidebar-left {
    width: 200px;
    background: #2c3e50;
    padding: 20px;
}

.sidebar-left ul {
    list-style: none;
}

.sidebar-left li {
    margin-bottom: 15px;
}

.sidebar-left a {
    color: #fff;
    text-decoration: none;
}

/* Partie centrale */
.content {
    flex: 1;
    padding: 30px;
    padding-left: 40px;
}


/* Partie droite */
.sidebar-right {
    width: 200px;
    padding: 20px;
}

.ad {
    background: white;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

#connect_button {
    margin: -26px;
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s ease;
}

#connect_button:hover {
    letter-spacing: 3px;
    background-color: hsl(261deg 80% 48%);
    color: hsl(0, 0%, 100%);
    box-shadow: rgb(93 24 220) 0px 7px 29px 0px;
}

.loginForm {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s 2s, opacity 2s linear;
}

.loginForm.display {
    visibility: visible;
    opacity: 1;
    transition: opacity .7s linear;
    max-width: 300px;
    background: #f1f7fe;
    overflow: hidden;
    border-radius: 16px;
    color: #010101;
    box-shadow: rgb(255 255 255 / 15%) 0px 10px 5px;
    width: 350px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 16px;
    text-align: center;
}

.su_form_title {
    font-weight: bold;
    font-size: 1.6rem;
    color:#25003e
}

span {
    font-size: 1rem;
    color: #555;
}

.contForm {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
}

.txt_input {
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
}

.form-section {
    padding: 16px;
    font-size: .85rem;
    background-color: #e0ecfb;
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
}

.form-section a {
    font-weight: bold;
    color: #0066ff;
    transition: color .3s ease;
}

.form-section a:hover {
    color: #005ce6;
    text-decoration: underline;
}

.submit {
    background-color: #3D45AA;
    color: #fff;
    border: 0;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .8s ease;
}

.submit:hover {
    background-color: #0066ff;
}

footer {
    color: #ffffff87;
    width: 20%;
    max-width: 20%;
}
