@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..900");

* {
    margin: 0;
    padding: 0;
}

html, body {
    font-family: Nunito, sans-serif;
    color: #fff;
    background: #666666;
}
button{
    cursor: pointer;
    outline: none;
    border: none;
}
button:active{
    box-shadow: inset 0 0 12px 2px #c1c1c1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #c60;
}
input[readonly]{
    background: #ccc;
    box-shadow: none;
}
input {
    line-height: var(--height, 38px);
    font-size: 16px;
    padding: 0 8px;
    outline: none;
    border: none;
    color: #000;
    box-shadow: inset 0 0 8px 2px #fff;
    background: #eee;
    border-radius: 5px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 12px 0;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    --border-radius: 12px;
    position: relative;
    font-size: 35px;
    display: flex;
    margin: 80px 0;
    font-weight: 900;
}


.title .name {
    background: #000;
    padding: 12px;
    color: #fff;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}


.title .suffix {
    background: #c60;
    color: #000;
    padding: 12px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.content {
    width: fit-content;
    margin: 0 auto;
}

.bkg {
    position: absolute;
    height: 100%;
    width: 100%;
}

#username {
    width: 100px;
}

#regcode {
    width: 280px;
}

#generate {
    height: var(--height, 38px);
    background: #c60;
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    padding: 0 10px;
    line-height: var(--height);
    font-size: 16px;
    font-weight: 600;
}

.generate-box {
    --height: 38px;
    display: flex;
    gap: 4px !important;
}

.caption-1 {
    padding: 12px 0;
}