/* navbar start */
.navbar-outer-container {
    position: sticky;
    top: 0;
}

.navbar-container {
    background: linear-gradient(
        to right,
        #325998 0,
        #45376c 50%,
        #584587 60%,
        #af3869 100%
    );
    padding: 1rem 0;
    z-index: 9999;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.left-header > a {
    background: #584587;
    color: white;
    padding: 0.4rem 2rem 0.7rem;
    border-radius: 5px;
    font-weight: 400;
    letter-spacing: 0.1rem;
    border: none;
    outline: none;
    font-size: 16px;
    text-decoration: none;
}

.left-header > a:hover {
    text-decoration: underline;
}

.home-logo {
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.winner-imaage {
    width: 3rem;
    height: 3rem;
}
.left-header {
    display: flex;
    align-items: center;
    color: white;
    gap: 0.3rem;
    cursor: pointer;
}
.winner-text {
    /* font-size: 2rem; */
    font-weight: 500;
}

.left-header-outer-container {
    display: flex;
    gap: 3rem;
}
.custom-modal-size {
    max-width: 57rem !important;
}
.center-box {
    display: flex;
    align-items: center;
    color: white;
    gap: 0.2rem;
}
.heart {
    animation: beat 2s infinite alternate;
    transform-origin: center;
}

/* Heart beat animation */
@keyframes beat {
    to {
        transform: scale(1.1);
    }
}

/* navbar end */

/* user registration container start*/
.user-registration-container {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 4rem 0 4rem 0;
    padding: 3rem 4rem 6rem 4rem;
    border-radius: 0.5rem;
}

.user-registration-heading {
    margin-bottom: 3rem;
    text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #984275 !important;
    font-weight: 500 !important;
}

.image-with-login-screen {
    display: flex;
    gap: 5rem;
}

.user-registration-image {
    flex: 1;
    width: 100%;
    height: 24rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 0.2rem;
    border: 1px solid gray;
    padding: 0.2rem;
}

.form-box {
    flex: 1;
}

.submit-btn {
    background: #584587;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    border: none;
    outline: none;
}

.error-message {
    color: red;
    font-size: 0.875em;
}

.spin-win-imgs {
    height: 30rem;
    width: 45rem;
    object-fit: contain;
}

.custom-modal-width {
    min-height: 21rem;
    object-fit: cover;
}

/* medial query */

/* Mobile Styles */
@media only screen and (max-width: 767px) {
    .image-with-login-screen {
        flex-direction: column;
    }
    .user-registration-image {
        max-height: 24rem;
    }
    .user-registration-container {
        padding: 1rem;
    }
    .header-box {
        flex-direction: column;
        gap: 0.5rem;
    }
    .ra-log-size {
        width: 8rem;
    }
    .winner-text {
        text-align: center;
    }
    .left-header-outer-container {
        gap: 1rem;
    }
}

/* Tablet Styles */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .image-with-login-screen {
        flex-direction: column;
    }
    .user-registration-image {
        max-height: 24rem;
    }
    .header-box {
        gap: 2rem;
    }
    .custom-modal-size {
        max-width: 40rem !important;
    }
}
