*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:Arial,sans-serif;

}

body{

    background:#111827;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

.container{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.card{

    width:420px;

    background:#1f2937;

    padding:40px;

    border-radius:16px;

    border:1px solid #d4af37;

    text-align:center;

}

.card h1{

    color:#d4af37;

    margin-bottom:15px;

}

.card p{

    color:#fff;

    margin-bottom:20px;

}

.card input{

    width:100%;

    height:54px;

    border:none;

    border-radius:10px;

    padding:0 16px;

    margin-bottom:20px;

    font-size:16px;

}

.card button{

    width:100%;

    height:54px;

    border:none;

    border-radius:10px;

    background:#d4af37;

    color:#000;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

}

.card a{

    color:#d4af37;

    text-decoration:none;

}

