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

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

[v-cloak] {
    display: none !important;
}

html {
    height: 100%;
}

body{
    min-height: 100vh;
    position: relative;
    background-color: #070607;
}

.container{
    width: 100%;
    height: 100%;
    position: relative;
}

.bg{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.page-title{
    width: 100%;
    font-size: .3rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-style: italic;
    background: linear-gradient(to right, #AC81FF, #2EADFF);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
}

.btn1{
    width: 60%;
    height: .8rem;
    background: linear-gradient(to left, #AC81FF, #2EADFF);
    border-radius: .6rem;
    color: #fff;
    font-size: .24rem;
    font-weight: 900;
    text-align: center;
    line-height: .8rem;
    position: absolute;
    left: 20%;
    top: 30%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(172, 129, 255, 0.4);
    background: linear-gradient(to left, #B68FFF, #4BB8FF);
}

.btn-box{
    width: 90%;
    position: absolute;
    left: 5%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: .1rem;
    padding: .2rem;
}

.logo-box{
    display: flex;
    align-items: center;
}

.logo-box img{
    width: .8rem;
    margin-right: .1rem;
}

.logo-box span{
    font-size: .24rem;
    font-weight: bold;
    color: #333333;
}

.btn2{
    padding: .1rem .2rem;
    background: linear-gradient(to left, #AC81FF, #2EADFF);
    font-family: Roboto, Roboto;
    font-weight: 900;
    font-size: .24rem;
    color: #FFFFFF;
    border-radius: .6rem;
    cursor: pointer;
    animation: breathing 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(172, 129, 255, 0.6);
    transition: all 0.3s ease;
}

.btn2:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(172, 129, 255, 0.8);
    background: linear-gradient(to left, #B68FFF, #4BB8FF);
    animation-play-state: paused;
}

@keyframes breathing {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(172, 129, 255, 0.6);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(172, 129, 255, 0.8);
    }
}

.footer{
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: .24rem;
    margin-top: .2rem;
}