#password,
#password_confirmation,
#password2,
#password_confirmation2 {
    display: none;
}
.mainFlex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin: 0;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 180px;
    height: 180px;
}

.welcome {
    margin-bottom: 20px;
    color: var(--dark-grey);
    font-size: 30px;
    font-weight: 600;
}

.submit {
    width: 280px;
    background-color: var(--dark-red);
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border: none;
    border-radius: 7px;
    margin-top: 20px;
}

.simpleText {
    font-size: 15px;
    color: var(--dark-grey);
    margin-top: 20px;
    text-align: center;
}

.linkText {
    color: var(--dark-blue);
    font-size: 15px;
    text-decoration: none;
}

.linkText:hover {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--dark-blue);
}

.orflex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.line {
    width: 115px;
    border-top: 1px solid var(--dark-grey);
}

.orflex p {
    color: var(--dark-grey);
    font-size: 15px;
    margin: 0px 20px 0px 20px;
}

.error {
    color: #ff0000;
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
}
.submit:hover,
.submit:active {
    cursor: pointer;
    background-color: var(--light-red);
}
.inputStyle {
    width: 280px;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid var(--dark-grey);
    /* Border color */
    border-radius: 5px;
    /* Rounded corners */
    font-size: 16px;
    /* Font size */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    /* Inner shadow for depth */
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Smooth transition for focus */
}
.inputStyle:focus {
    outline: none;
    border-color: var(--dark-grey);
    /* Highlight color when focused */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
        0 0 8px var(--dark-grey);
    /* Outer glow effect */
}

.socialLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    padding: 10px;
    margin-top: 10px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid var(--dark-red);
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.socialLogin:hover {
    background-color: var(--dark-red);
    color: #ffffff;
}

#forgot {
    color: var(--dark-grey);
}

.socialLogin i {
    margin-right: 8px;
}

@media screen and (max-width: 480px) {
    .welcome {
        font-size: 20px;
    }

    .orflex p {
        font-size: 13px;
    }

    .simpleText,
    .linkText {
        font-size: 13px;
    }
}