﻿heading {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #f0f8ff;*/
    font-family: 'Arial', sans-serif;
    
}

.welcome-text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-in-out;
   
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.sponsor-text {
    font-size: 1.8rem;
    color: #007bff;
    font-weight: bold;
    margin-top: 10px;
    animation: slideUpBounce 2.5s ease-in-out;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

.sub-text {
    font-size: 1.5rem;
    color: #555;
    margin-top: 20px;
    text-align: center;
}

.bodyLogin {
    padding:0.9vh;
    /*background-color: #f0f8ff;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
}

.form-container {
    /*background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 2vh;
    max-width: 40vh;
    width: 100%;
    height:100%;*/
    padding: 1vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .form-container h2 {
        text-align: center;      
        background-color: #12477f;
        color: #fff;
        padding: 1vh;
    }

    .form-container .form-control {
        border-radius: 2px;
    }

    .form-container .btn-primary {
        background-color: #12477f;
    }

.back-link {
    display: block;
    text-align: center;
    margin-top: 10px;
}
/*new-user-sigin-google*/
.back-link {
    display: inline-block;
    margin-right: 2px; /* Adds space between links */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bolder;
    color: #094f9a;
    padding: 2px;
}

/*arrow form newuser*/

/* Keyframes for left and right animation */
@keyframes leftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
    /* Move 10px to the right */
    100% {
        transform: translateX(0);
    }
    /* Back to the initial position */
}

/* Apply animation to the arrow icon */
.bi-arrow-right {
    display: inline-block;
    
    animation: leftRight 1s ease-in-out infinite; /* 1s duration, ease-in-out, infinite loop */
}


