* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cascadia Code;
}

body {
    background: #2e364a;
    overflow-x: hidden;
}


#c {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    overflow-x: hidden;
    user-select: none;
}

.text-box {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.left-container {
    left: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    animation: showing linear forwards;
    animation-timeline: view();
    animation-range: 100px 250px;
}

.right-container {
    left: 50%;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(100%);
    animation: showing linear forwards;
    animation-timeline: view();
    animation-range: 100px 250px;
}

@keyframes showing {

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
        overflow: visible;
    }
}


.container img {
    position: absolute;
    width: 60px;
    border-radius: 50%;
    right: -30px;
    top: 22px;
    z-index: 10;
    background: #fff;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: solid 2px #fff;
}

.right-container img {
    left: -30px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
    transform-origin: top;
}

@keyframes moveline {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.text-box h2 {
    font-weight: 600;
}

.text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;
}

.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}


@media screen and (max-width: 600px) {
    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 31px;
    }

    .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .text-box {
        font-size: 13px;
    }

    .text-box small {
        margin-bottom: 10px;
    }

    .right-container {
        left: 0%;
    }

    .left-container img,
    .right-container img {
        left: 10px;
    }

    .left-container-arrow,
    .right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0px;
        left: -15px;
    }


    .left-container,
    .right-container {
        left: 0;
        opacity: 1;
        filter: blur(0px);
        transform: translateX(0%);
        animation: none;
    }

}


.text-box-footer-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.text-box-footer-list a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    flex-grow: 1;
}

a {
    color: #E9008D;
}


.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-container h1 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #E9008D;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
}

.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
    border-color: #E9008D;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 77, 109, 0.5);
}

.login-container button {
    padding: 0.8rem;
    font-size: 1rem;
    background-color: #E9008D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.login-container button:hover {
    background-color: #E9008D;
}

.heart-icon {
    color: #E9008D;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    user-select: none;
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.navbar .brand img {
    height: 1.5rem;
}

.navbar form {
    margin: 0;
}

.navbar button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #E9008D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.navbar button:hover {
    background-color: #C70079;
}

.error-message {
    color: #9A005D;
    font-size: 0.9rem;
    margin: 1rem 0;
}