body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-image {
    max-width: 100%;
}


.bottom-text 
{
    position: absolute;
    bottom: 114%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
}

.button-container {
    position: absolute;
    bottom: 10%; /* Adjusted bottom spacing */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.get-started {
    background-color: darkorange;
    color: white;
    padding: 8px 80px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.get-started:hover {
    background-color: darkorange;
}

.or-text {
    color: white;
    font-size: 16px;
    margin-right: 5px; /* Adds a small space between "or" and "Create Account" */
}

.create-account {
    color: darkorange;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.create-account:hover {
    color: darkorange;
}