*,:after,:before {
    box-sizing: border-box
}

body, html {
    width: 100vw;
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    background: #202c39;
    margin: 0;
    font-family: sans-serif;
    color: #fff;
}


a {
    text-decoration: none;
    color: #fff;
}

body>.page {
    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: 2 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);
}


.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;
}

.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;
}

.brand>.brand-name {
    display: flex;
    flex-direction: column;
}
.pcname {
    margin: 0;
}
.brand>.brand-name>.pcname-desc {
    font-size: 75%;
    color: #c0bbbb;
}


@media(min-width: 576px) {
    .container {
        width:500px;
    }
    .content {
        box-shadow: 1px 1px 3px 0px #1c1c1c;
    }
    .brand-placeholder {
        display: none;
    }
}

@media(min-width: 800px) {
    .container {
        width:600px;
    }
}
