* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.login-container {
    background: #fff;
    border: 1px solid #dbdbdb;
    width: 350px;
    padding: 40px;
    text-align: center;
}

.logo {
    font-family: 'Billabong', cursive;
    font-size: 48px;
    margin-bottom: 30px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    background: #fafafa;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
}

input:focus {
    outline: none;
    border-color: #a8a8a8;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #0095f6;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #1877f2;
}

.error {
    color: #ed4956;
    font-size: 14px;
    margin-bottom: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dbdbdb;
}

.divider span {
    margin: 0 10px;
    color: #8e8e8e;
    font-size: 13px;
}

.signup {
    font-size: 14px;
}

.signup a {
    color: #0095f6;
    font-weight: bold;
    text-decoration: none;
}

body {
    background: linear-gradient(135deg, #6EC1FF, #4AA3FF);
    margin: 0;
    min-height: 100vh;
}

.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.legal-fixed a {
    position: fixed;
    bottom: 15px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    z-index: 99999;
}

.legal-left {
    left: 20px;
}

.legal-right {
    right: 20px;
}

.forgot-password {
    display: block;
    text-align: center;
}

.delete-account {
    display: block;
    margin-top: 6px; /* juste en dessous */
    text-align: center;
    color: #ff4d4d;
    font-size: 13px;
    text-decoration: none;
}

.delete-account:hover {
    color: #ff1a1a;
    text-decoration: underline;
}
