:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.loginHolderDiv {
    
    padding-bottom: 75px;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Adjust the height as needed */
}

.form-group {
    width: 100%;
    text-align: left;
    
    /* Center the form group content */
}

.forgotPasswordLink {
    color: #1cad75;
}

.centered-button {
    display: flex;
    justify-content: center;
}

.loginButtonOnPage {

    transition: transform 0.4s ease;
}

.loginButtonOnPage:hover {
    transform: scale(1.05);
}

.fogotPw {
    text-align: center;
}

.baseholder {
    background-color: #191919;
    
    background-image: radial-gradient(circle at 60% 40%, #1cad7513 0%, transparent 25%),
        radial-gradient(circle at 40% 30%, hsla(0, 0%, 13%, 0.1) 0%, transparent 30%);
}

.basicGreenButLogin {
    margin-top: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    border-radius: 10px !important;
    min-width: 221px;
    font-size: 1.5em;
    box-shadow: var(--boxShadow);
    color: white;
    background-color: #1cad75a9;
    border: 2px solid #1cad75a9;
    padding: 10px 10px;
    transition: 0.4s ease-out;
}

.basicGreenButLogin:hover {
    transform: translateY(-5px)
}

.loginCContainer {
    border: 1px solid gray;
    min-width: 30vw;
    border-radius: 15px;
    font-family: 'poppins', sans-serif;
    padding: 20px;
    color: white;
    backdrop-filter: blur(10px); /* Background blur effect */
    -webkit-backdrop-filter: blur(10px); /* Support for Safari */
    background: #191919de
    
}

@media (max-width: 750px) {
    .loginCContainer {
        min-width: 50vw;
    }
}

@media (max-width: 500px) {
    .loginCContainer {
        min-width: 80vw;
    }
}

.loginTitle {
    color: white;
    font-size: 3em;
}

.lockIconDiv {
    padding-top: 45px;
    padding-bottom: 45px;
    display: flex;
    width: 100%;
    justify-content: center;
    color: white;
}

.fa-lock {
    scale: 3.5;
}

.welcomeTextSpan {
    width: 100%;
    text-align: center !important;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 40px;
}

.form-control {
    color: white;
    background-color: #191919;
    border: 1px solid gray;
}

#passwordFormGroup {
    margin-bottom: 5px;
}

.rememberMeInput {
    color: #191919;
    background-color: #191919 !important;
    border: 1px solid #1cad75;
}