@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --auth-color-primary: #ffd700;
    --auth-color-secound: #000000;
    --auth-color-shadow: #b8860b;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit", sans-serif;
    font-weight: bold;
}

body {
    font-family: "Prompt", sans-serif;
    padding-top: min(10%, 10vh);
    height: 100vh;
    display: flex;
    justify-content: center;
}

.fs-1 {
    font-size: 2.5rem !important;
}
.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 6px var(--auth-color-shadow);
    color: #ffffff;

    .input-group {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(0, 255, 255, 0.08);
        color: #ffffff;
        border-radius: 6px;
        transition: background 0.2s, box-shadow 0.2s;
        border-radius: 50px;
    }

    .form-control {
        color: #ffffff;
    }
    .form-control:focus {
        background: rgba(255, 255, 255, 0.25);
        outline: none;
        color: #ffffff;
    }
}

.contact-box {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 10px auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffffaa;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: solid 1px var(--auth-color-shadow);
}

.btn-login {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    padding: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: var(--auth-color-secound);
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 8px var(--auth-color-shadow);
    transition: background 0.2s, box-shadow 0.2s;
}

/* register */

.btn-next {
    background: var(--auth-color-primary);
    border: none;
    color: #222;
    font-weight: bold;
    box-shadow: 0 4px 12px var(--auth-color-shadow);
    transition: filter 0.2s, box-shadow 0.2s;
}

.btn-next:hover {
    color: #fff;
    filter: brightness(1.1);
}

.btn-confirm-register {
    background: linear-gradient(to right, #32cd32, #228b22);
    border: none;
    color: #000;
    font-weight: bold;
}

.text-site-name {
    color: rgb(255, 255, 255);
}

.step-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
    position: relative;
    width: 60%; /* adjust as needed */
    height: 60px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    font-family: sans-serif;
    position: absolute;
    top: 10px;
    z-index: 2;
}

.step-1 {
    left: 0;
    background-color: #111;
    box-shadow: 0 0 5px #e9e9e966;
}

.step-2 {
    right: 0;
    background-color: #111;
    box-shadow: 0 0 5px #e9e9e966;
}

.step-1.active,
.step-2.active {
    background-color: var(--auth-color-primary);
    color: #222;
    box-shadow: 0 0 10px var(--auth-color-shadow);
}

.line {
    position: absolute;
    height: 3px;
    background-color: var(--auth-color-primary);
    width: calc(100% - 45%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 6px var(--auth-color-shadow);
}

.text-login {
    color: var(--auth-color-primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
