:root {
    --primary: #D69432;
    --bg: #000;
    --maxw: 560px;
    --btn-height: 64px;
}

* { box-sizing: border-box }
html,body { height:100% }
            
body {
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: var(--bg) no-repeat center/cover fixed url("../image/desktop-bg.jpg");
}

.visually-hidden {
    display: none;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    pointer-events: none;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    height: 100svh;
}

.card{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 200px;
    padding: 40px 0;
}

.links  {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.btn {
    min-height: var(--btn-height);
    padding: 10px 14px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .04s ease;

    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.btn:hover {
    background: rgba(212,166,67,.06)
}

.btn:active {
    transform: translateY(1px)
}

.btn .icon {
    width: 30px;
    height: 30px;
    margin-left: 8px;
}

.btn .label {
    margin-right: 38px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.btn .label-text {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

.btn.primary-btn {
    background: var(--primary);
    color: #000;
}

.line {
    height: 2px;
    width: 100%;
    background: var(--primary);
    margin: 10px 0 20px 0;
}

.footer {
    margin-top: auto;
}

@media (max-width: 991px){
    body {
        background: var(--bg) no-repeat center/cover fixed url("../image/mobile-bg.jpg");
    }

    .btn .icon {
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }

    .btn .icon svg {
        width: 20px;
        height: 20px;
    }
}
