* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

main {
    background: linear-gradient(#00000000, #070511), url('../img/image.png') #0C0A16 top center / cover no-repeat;
    padding: 5rem 0;
}

.box {
    background: #0C0A16;
    border: 1px solid #161325;
    margin: auto auto;
    padding: 2rem;
    max-width: 900px;
}

.box-arrow a {
    text-decoration: none;
    color: #BD42FF;
}

.box-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.box-logo {
    display: block;
    max-width: 100%;
    width: 224px;
    justify-self: center;
    margin-top: 0.5rem;
}

.box-steam {
    display: none;
    background: #1C1830;
    width: 256px;
    height: 84px;
    padding: 1rem;
    gap: 1rem;
    justify-content: space-around;
    align-items: center;
    border-radius: 0.25rem;
}

.box-steam img {
    display: block;
    border-radius: 50%;
    height: 52px;
    width: 52px;
}

.box-steam p:first-child {
    color: white;
    max-height: 100%;
}

.box-steam p:last-child {
    color: #b6b3cd;
    max-height: 100%;
}

.box-steam span {
    color: red;
}

.box-form {
    display: grid;
    gap: 1.5rem;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 500px;
}

.box-form div {
    display: grid;
    gap: 0.75rem;
}

.box-form label {
    font-weight: 400;
    color: white;
    letter-spacing: 0.025em;
}

.box-form input {
    width: 100%;
    background: #0C0A16;
    border: 1px solid #3D3B45;
    border-radius: 0.25rem;
    color: white;
    padding: 1rem;
    outline: none;
}

.box-form input:read-only {
    opacity: 0.7;
    cursor: not-allowed;
}

#captcha {
    position: relative;
}

#captcha img {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.box-form a {
    color: #BD42FF;
    text-align: center;
}

.box-form button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #BD42FF;
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-weight: 100;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    transition: background-color 0.2s ease;
    margin: 0 auto;
    width: 75%;
}

.box-form button:hover {
    background-color: #a12cdf;
}

#box-title {
    font-size: 1.25rem;
    text-align: center;
    color: yellow;
    font-weight: 600;
}

#box-message {
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
    color: white;
    width: 100%;
    border-radius: 0.375rem;
    padding: 1.25rem 2.5rem;
    background-color: #1C1830;
}

#box-profile {
    display: none;
    color: #BD42FF;
    text-align: center;
}

.box-warning {
    max-width: 80%;
    margin: 15px auto;
}

.box-warning h6 {
    margin-left: 0.5rem;
    color: red;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.box-warning p {
    color: #A1A1A6;
    font-size: 0.875rem;
}

.box-warning a {
    color: white;
    text-decoration: none;
}

.box-warning a:hover {
    text-decoration: underline;
}

footer {
    background: #0A0815;
    color: white;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 2.75rem 0;
}

.footer-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.footer-content-left img {
    max-width: 100%;
    width: 256px;
}

.footer-content-left p {
    max-width: 300px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-content-right {
    display: flex;
    flex-direction: row;
    gap: 5rem;
}

.footer-content-right h6 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0.75rem;
}

.footer-content-right li {
    color: #b6b3cd;
    list-style: none;
    margin-bottom: 0.3rem;
}

footer hr {
    border-color: #14121D;
}

.footer-rights {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1.2rem;
}

.footer-rights p {
    height: 100%;
}

.footer-rights button {
    background: #BD42FF;
    border: none;
    clip-path: polygon(0% 0%, 80% 0%, 100% 30%, 100% 99%, 0% 100%);
    color: white;
    padding: 0.5rem 2.25rem;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.footer-rights button:hover {
    background: #a12cdf;
}