*,:after,:before {
    box-sizing: border-box
}

body {
    display: flex;
    flex-direction: column;
    background: #202c39;
    margin: 0;
    font-family: sans-serif;
    color: #fff;
}


a {
    text-decoration: none;
    color: #fff;
}

body>div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
}


.content {
    position: relative;
    border-radius: 9px;
    border-width: 0px;
    border-style: solid;
    border-color: #00000000;
    padding: 18px 12px;

    display: flex;
    flex-direction: column;
}

.content>.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

form button[type="submit"] {
    width: 100%;
    border-radius: 9px;
    background: #005fc5;
    border: 2px solid #005fc5;
    outline: none;
    margin-bottom: 9px;
    cursor: pointer;
    padding: 0.75rem 0.375rem ;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}
form button[type="submit"]:hover {
    background-color: #0051a7;
    border-color: #004c9e;
    color: var(--bs-btn-hover-color);
}

form a.o3auth {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.5rem 0.375rem ;
}

form a.o3auth>svg {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
}

form a[name="oauth2-discord"] {
    width: 100%;
    border-radius: 9px;
    background: #005fc5;
    border: 2px solid #005fc5;
    outline: none;
    margin-bottom: 9px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
}

form a[name="oauth2-discord"]:hover {
    background-color: #0051a7;
    border-color: #004c9e;
    color: var(--bs-btn-hover-color);
}

.content>.row>a {
    width: 100%;
    background: #415c73;
    border-radius: 7px;
    text-align: center;
    padding: 9px;
    cursor: pointer;
    transition: .1s;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.content>.row>a:hover {
    background: #226196;
}

form label {
    margin-bottom: .5rem;
    display: inline-block;
}

.form-control {
    appearance: none;
    background-clip: padding-box;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    color: var(--bs-body-color);
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

footer{
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #2e4f5c;
    
    padding: 32px clamp(18px, 4vw, 52px);
    background: #27364642;
}

footer>.inner {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}
footer>.bottom {
    margin-top: 28px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.85rem;
}

.brand-content {
    display: flex;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 9px;
    margin-bottom: 3px;
    cursor: pointer;
    transition: .5s;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand-placeholder {
    width: calc(100% - 30px);
    height: 1px;
    background: #3f636a;
}

.brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
}
.brand>img{
    object-fit: cover;
    width: 75px;
    height: 75px;
    border-radius: 5px;
}

.brand>.brand-name {
    display: flex;
    flex-direction: column;
}
.pcname {
    margin: 0;
    font-family: "Chakra Petch", "Inter", sans-serif;
}
.brand>.brand-name>.pcname-desc {
    font-size: 75%;
    color: #c0bbbb;
}

.toast-container {
    --bs-toast-zindex: 1090;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    width: max-content;
    z-index: var(--bs-toast-zindex)
}



@media(min-width: 576px) {
    .container {
        width:500px;
    }
    .content {
        box-shadow: 2px 2px 5px 3px #1c1c1c;
    }
    .brand-placeholder {
        display: none;
    }
}

@media(min-width: 800px) {
    .container {
        width:600px;
    }
}