.auth {
    background-image: url('/assets/img/auth-background.jpeg');
    background-size: cover;
    background-position: center center;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Container Styles */
.auth-container {
    background-color: #0A0C0F;
    border-radius: 8px;
    padding: 1rem;
}

/* Input and Select Styles */
input,
select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background-color: #1A252F !important;
    color: white !important;
    padding: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input::placeholder,
select::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

input:focus,
select:focus {
    border-color: #00bfff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2);
}

/* Button Styles */
.auth-button {
    background-color: var(--crave-sky-blue);
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    color: #000;
    cursor: pointer;
}

.auth-button:hover {
    background-color: var(--crave-sky-blue)
}

.text-white {
    color: white;
}

.text-crave,
.text-crave:hover {
    color: #FFF;
    text-decoration: none;
}

.text-crave:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .auth-container {
        padding: 0.5rem;
    }

    img {
        max-height: 150px;
    }

    input,
    select,
    .auth-button {
        font-size: 14px;
        padding: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .auth-container {
        padding: 1.5rem;
    }

    img {
        max-height: 200px;
    }
}

@media (min-width: 992px) {
    .auth-container {
        padding: 2rem;
    }

    img {
        width: 216px;
        max-height: 199px;
        object-fit: cover;
    }
}
