﻿
.page-100 {
}

    .page-100::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        height: 100vh;
        width: 100%;
        background-image: url('../images/bg/aorus_bg.jpg');
        background-position: center center;
        background-size: cover;
        opacity: 0.5;
    }

.content-div {
}

.login-box {
    position: relative;
    display: none;
    margin: 0px auto;
    width: 100%;
    max-width: 500px;
    padding: 30px 30px;
    background: rgba(0,0,0,0.7);
}

    .login-box input, .login-box .input-group-addon {
        color: #fff;
        border: 0;
    }

.checkbox, .checkbox input[type=checkbox] {
    color: #666;
    border: 0;
}



.login-box .input-group {
}

.forgot-btn {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    right: 0;
    top: 0;
    line-height: 34px;
    color: #666;
}

.sign-div span {
    position: relative;
    display: inline-block;
    width: auto;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}

    .sign-div span i {
        position: relative;
        margin-left: 5px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        border-radius: 50%;
        border: 1px solid #666;
        transition: 0.3s all;
        cursor: pointer;
    }

        .sign-div span i:hover {
            border: 0;
        }

    .sign-div span:nth-child(2) i:hover {
        background: #4267b2;
        border: 1px solid #4267b2;
    }

    .sign-div span:nth-child(3) i:hover {
        background: #41abe1;
        border: 1px solid #41abe1;
    }

    .sign-div span:nth-child(4) i:hover {
        background: #dd4d42;
        border: 1px solid #dd4d42;
    }

    .sign-div span:nth-child(5) i:hover {
        background: #5181b8;
        border: 1px solid #5181b8;
    }

.fb-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url('../images/fb.png');
    background-size: cover;
}

.google-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url('../images/google.png');
    background-size: cover;
}

.twitter-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url('../images/twitter.png');
    background-size: cover;
}

label {
    font-weight: normal;
}

.wizard-progress {
    position: relative;
    width: 100%;
}

    .wizard-progress .step {
        position: relative;
        float: left;
        width: 33.33%;
        height: 30px;
    }

.node {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #323232;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-size: 2rem;
    color: #bcbcbc;
    font-family: 'Aldrich','Microsoft JhengHei', sans-serif;
}

.complete > .node, .in-progress > .node {
    background: #ff6400;
    color: #fff;
}

.step::after {
    position: absolute;
    content: "";
    z-index: 0;
    left: 15px;
    top: 12px;
    height: 6px;
    width: calc(100% - 15px);
    background: #323232;
}

.step:nth-child(2)::after {
    left: 0px;
    width: 100%;
}

.step:nth-child(3)::after {
    right: 15px;
    left: 0px;
    width: calc(100% - 15px);
}


.complete::after {
    background: #ff6400;
}

.in-progress::after {
    background-image: linear-gradient( to right, #ff6400 75%, #323232 100%);
}


@media (max-width: 768px) {
    .login-box {
        padding: 10px 10px;
    }
}
.aorus-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0,0,0,.75);
    backdrop-filter: saturate(120%) blur(1.5px);
}
 .aorus-loading-overlay .spinner {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 3px solid rgba(255,255,255,.25);
        border-top-color: #ff6400; /* AORUS 橘 */
        animation: aorus-spin .8s linear infinite;
 }
 .aorus-loading-overlay .loading-text {
        margin-top: 12px;
        color: #fff;
        font-weight: 600;
        letter-spacing: .5px;
        text-shadow: 0 1px 2px rgba(0,0,0,.4);
 }

@keyframes aorus-spin {
    to {
        transform: rotate(360deg)
    }
}

/* 顯示 loading 時禁止滾動 */
body.aorus-loading {
    overflow: hidden;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}