/*background style*/
.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    background-color: black;
}

/*bike line*/
.bikeLine {
    position: absolute;
    display: flex;
    gap: 10px;
    height: 180px;
    width: 200%;
    transform: rotate(-45deg);
    overflow: hidden;
}

    .bikeLine img {
        flex-shrink: 0;
        border-radius: 10px;
    }

.bikeWrapper {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: moveWrapper 300s linear infinite;
}

    .bikeWrapper.reverse {
        animation-direction: reverse;
    }

@keyframes moveWrapper {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.line1 {
    top: 5%;
    left: -80%;
}

.line2 {
    top: 28%;
    left: -70%;
}

.line3 {
    top: 58%;
    left: -60%;
    height: 250px;
}

.line4 {
    top: 93%;
    left: -49%;
}

.line5 {
    top: 95%;
    left: -29%;
}



/*global styles*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: black;
    color: black;
    /*    font-family: 'Arial', sans-serif;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/*login form container*/
.loginFormContainer {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

    .loginFormContainer h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.75rem;
    }

    .loginFormContainer.registering{
        padding: 30px;
        max-width: 450px;
    }

/*login form style*/
.loginForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formGroup {
    display: flex;
    flex-direction: column;
}
    .formGroup label {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .formGroup input {
        padding: 10px 12px;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid #cccccc;
        background-color: #ffffff;
        color: black;
    }

        .formGroup input:focus {
            outline: none;
            border-color: #007bff;
        }

/*login button*/
.loginButton {
    text-align: center; /*delete after developing process*/
    text-decoration: none; /*delete after developing process*/
    margin-top: 10px;
    padding: 10px;
    font-size: 1rem;
    font-weight: 550;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #007bff;
    color: #ffffff
}

    .loginButton:hover {
        background-color: #0056b3;
    }

/*login window form options*/
.loginWindowOptions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.optionLink {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
}

    .optionLink:hover {
        text-decoration: underline;
    }

/*error and success messages*/
.formMessage {
    font-size: 0.9rem;
    margin-top: 4px;
}
    .formMessage.error {
        color: red;
    }

    .formMessage.success {
        color: green;
    }