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

.background-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.login-container {
    display: flex;
    background: rgba(255, 255, 255, 0.904);
    border-radius: 15px;
    animation: fadeIn 1.2s ease-in-out;
    max-width: 800px;
    width: 100%;
    margin: 30px;
    padding-top: 20px;
    padding-right: 20px;
    z-index: 1;
}

.image-container {
    display: none;
}

.card {
    border-radius: 0 15px 15px 0;
    width: 100%;
    max-width: 450px;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.card-body {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.login-logo {
    max-width: 160px;
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.form-control {
    border-radius: 10px;
    border-color: #f6f1f1;
    background-color: #ffffffcf;
}

.btn-round {
    border-radius: 30px;
    transition: background-color 0.3s ease-in-out;
}

.btn-round:hover {
    background-color: #064a74;
}

.text-primary {
    color: #365acf !important;
}

.fw-bold {
    font-weight: bold !important;
}

.gradient-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #484848;
}

.ship-crew {
    display: none;
    width: 300px;
    padding-left: 20px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 10px;
}

@media (min-width: 768px) {
    .image-container {
        display: block;
        flex: 1;
        border-radius: 15px 0 0 15px;
        overflow: hidden;
    }

    .card {
        flex: 1;
    }

    .ship-crew {
        display: block;
        align-self: center;
        height: 400px;
        width: 400px;
    }
}

.premium-login {
    display: inline-block;
    background-color: #0078d4;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    text-align: center;
}

.premium-login:hover {
    background-color: #093557;
    color: rgb(230, 243, 255) !important;
    transform: translateY(-3px);
}

.premium-login h5 {
    margin: 0;
    font-size: 1.2em;
}

.premium-login i {
    margin-right: 10px;
    font-size: 1.5em;
}