
:root {
    --primary: #DA5726;
    --secondary: #ce410e;
    --title-color: #333;
}
.btn--primary{
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
}
.btn--primary:hover{
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
}
body {
    background-color: var(--bs-body-bg)
}

#auth {
    height: 100vh;
    overflow-x: hidden
}

#auth #auth-right {
    background-image: url("../images/admin-login/auth.jpeg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#auth #auth-left {
    padding: 5rem
}

#auth #auth-left .auth-title {
    font-size: 4rem;
    margin-bottom: 1rem
}

#auth #auth-left .auth-subtitle {
    font-size: 1.7rem;
    line-height: 2.5rem;
    color: #a8aebb
}

#auth #auth-left .auth-logo {
    margin-bottom: 3rem
}

#auth #auth-left .auth-logo img {
    height: 2rem
}

@media screen and (max-width: 1399.9px) {
    #auth #auth-left {
        padding: 3rem
    }
}

@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 5rem
    }
}

@media screen and (max-width: 576px) {
    #auth #auth-left {
        padding: 5rem 3rem
    }
    #auth #auth-left .auth-title {
        font-size: 2rem;
    }
    #auth #auth-left .auth-subtitle {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}

html[data-bs-theme=dark] #auth-right {
    background: url(./png/4853433.png), linear-gradient(90deg, #2d499d, #3f5491)
}

#auth-right img {
    width: 100%;
    height: 800px;
    margin-left: 100px;
}
.login-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-text {
    font-size: 16px;
}


.copy-btn:hover {
    background-color:var(--secondary);
}
span.info-detail {
    font-size: 17px;
    font-weight: 500;
}
i.fa-regular.fa-copy {
    font-size: 18px;
}
.copy-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 8px;
    padding-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
