/* 🔥 Wrapper (zentriert alles sauber, ohne container zu zerstören) */
.auth-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 🔥 statt center */
    padding-top: 60px;       /* 🔥 Abstand nach oben */
}

/* 🔥 Card / Box */
.auth-box {
    font-family: Arial, sans-serif;
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* SUCCESS BOX */
.box {
    font-family: Arial, sans-serif;
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Headings */
.auth-box h1 {
    margin-bottom: 20px;
}

/* Inputs */
.auth-box input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Buttons */
.auth-box button,
.box button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #4f46e5;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.auth-box button:hover,
.box button:hover {
    background: #4338ca;
}

/* Messages */
.message {
    background: #eef2ff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Links */
.link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* Divider */
.auth-box hr {
    margin: 25px 0;
}

/* Code block (success page) */
.box code {
    display: block;
    margin: 15px 0;
    padding: 10px;
    background: #eef2ff;
    border-radius: 6px;
    word-break: break-all;
}