:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}


.baseholder {
    background-color: #191919;
    color: white;
}

.forgotPasswordDiv, .entryFieldDiv {
    border: 2px solid var(--borderColour);
    
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 15px 15px 10px 0px rgba(0, 0, 0, 0.1);
    min-height: 50vh;
    width: 350px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
.forgot-password-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.forgotPasswordDiv {
    height: 35vh;
    justify-content: center;
}
.forgot-password-heading {
    font-family: 'poppins', sans-serif;
}
.lock-icon-div {
    margin-bottom: 20px;
}
.fa-lock {
    scale: 3;
}
.entryFieldDiv {
    display: none; 
}
h1 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.inputDiv {
    margin-bottom: 20px;
}
.inputInformationContainer {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
}
input[type="email"], input[type="text"], #resetCode {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #191919;
    border: 1px solid gray;
    color: white;
}

.sumbitButton {
    font-size: 1.2em;
    font-family: 'poppins', sans-serif;
    margin-top: 10px;
    padding: 8px 6px;
    background-color: #1cad75;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid #1cad75;
}


.mainForgotCon {
    padding-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.codeEntryContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.codeInput {
    margin-bottom: 20px; /* Adds some space between the input and the button */
}
.close {
    width: fit-content;
    float: right;
}
#errorText {
    display: none;
    text-align: center;
    color: red;
}