:root{
    --purple:#4b1c4b;
    --purple-light:#8a3f96;
    --text:#4b1c4b;
    --muted:#917992;
    --border:#e3d6e7;
}
*{
    box-sizing:border-box;
}
html,
body{
    margin:0;
    padding:0;
    min-height:100vh;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);

    background:
        radial-gradient(
            circle at top right,
            rgba(138,63,150,.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f7f0f9 0%,
            #ffffff 100%
        );

    background-repeat:no-repeat;
    background-attachment:fixed;
}
.header{
    background:#ffffff;
    border-bottom:1px solid var(--border);
    padding:20px 40px;
}
.logo{
    height:48px;
}
.container{
    max-width:900px;
    margin:50px auto;
    padding:0 20px;
}
.card{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(75,28,75,.10);
}
h1{
    color:var(--purple);
    margin-top:0;
    margin-bottom:15px;
}
h2{
    color:var(--purple);
    margin-top:0;
}
p{
    color:var(--muted);
    line-height:1.6;
}
label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}
.password-input{
    width:100%;
    height:52px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
}
input[type=text]{
    width:100%;
    height:52px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
}
button{
    background:var(--purple);
    color:#fff;
    border:none;
    border-radius:999px;
    padding:14px 24px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}
button:hover{
    background:var(--purple-light);
}
.success{
    background:#eef8f1;
    border:1px solid #b6e0c2;
    color:#166534;
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
}
.button-row{
    display:flex;
    gap:12px;
    margin-top:20px;
    align-items:center;
    flex-wrap:wrap;
}
.button-link{
    display:inline-block;
    background:#4b1c4b;
    color:#ffffff;
    text-decoration:none;
    border-radius:999px;
    padding:14px 24px;
    font-weight:700;
    line-height:1;
}
.button-link:hover{
    background:#8a3f96;
}
.copy-box{
    margin-top:15px;
}
