﻿.authentication-bg {
    background: linear-gradient(90deg, rgba(109,194,52,1) 0%, rgba(23,146,133,1) 100%);
    position: relative;
}

    .authentication-bg::after {
        background-image: url(./img/auth-bg.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0.15;
    }

    .authentication-bg .container {
        position: relative;
        z-index: 1;
    }

.account-pages {
    height: 100vh;
    display: flex;
    align-items: center;
}

.custom-text-color {
    color: #6dc234;
}

.logo-text {
    color: #6dc234;
    font-size: 2rem;
    font-weight: 800;
}

form a.login-btn {
    cursor: pointer;
    width: 40%;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(90deg, rgba(109,194,52,1) 0%, rgba(23,146,41,1) 100%);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    text-decoration: none;
}

/*form input {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
}*/
.button-signin {
    cursor: pointer;
    width: 100%;
    padding: 0.6rem 0;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(90deg, rgba(109,194,52,1) 0%, rgba(23,146,41,1) 100%);
    color: var(--white);
    font-size: 1.2rem;
    outline: none;
    text-decoration: none;
    display: inline-block;
}