﻿/* button styles */

.form-container .button-👲 {
    margin-top: 4px;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
    padding: 0px 20px;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    position: relative;
    border: none;
    font-family: proxima-nova;
    background-color: #709f09;
    font-size: 18.5px;
    font-weight: bold;
    line-height: 40px;
}

    .form-container .button-👲 span {
        transition: all 0.3s;
    }

    .form-container .button-👲::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 39px;
        z-index: 1;
        opacity: 0;
        transition: all 0.3s;
        border-top-width: 1px;
        border-bottom-width: 1px;
        border-top-style: solid;
        border-bottom-style: solid;
        border-top-color: #749c21;
        border-bottom-color: #749c21;
        transform: scale(0.1, 1);
    }

    .form-container .button-👲:hover {
        background-color: yellowgreen;
    }

        .form-container .button-👲:hover span {
            letter-spacing: 2px;
        }

        .form-container .button-👲:hover::before {
            opacity: 1;
            transform: scale(1, 1);
        }

    .form-container .button-👲::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: all 0.3s;
    }

    .form-container .button-👲:hover::after {
        opacity: 0;
        transform: scale(0.1, 1);
    }

/* sign-in styles */

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid rgb(209,209,209);
    -webkit-text-fill-color: initial;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

.inner-💰.form-container {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 4px 4px 4px rgba(0,0,0,.3);
}

form {
    text-align: left;
    width: 100%;
}

    form h2 {
        text-align: left;
        border-bottom: 1px solid yellowgreen;
        margin-bottom: 16px;
    }

    form a {
        color: #749c21;
        text-decoration: underline;
    }

    form input[type=text] {
        margin-top: 3px;
        margin-bottom: 9px;
    }

    form input[type=password] {
        margin-top: 3px;
    }

div.forgotpw-container {
    display: inline-block;
    margin-left: 10px;
}

div.link-👩🏼zwj🌾 {
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: left;
}

header {
    transition: none !important;
    transform: none !important;
    background-color: hsla(0,0%,100%,.96) !important;
}

    header .toggle-🏘 {
        color: #444 !important;
    }

    header .link-🕉, header .link-🕉:hover {
        color: #444 !important;
    }

    header .dropdown-content {
        background-color: rgba(255,255,255,.95)
    }

#logoWhite {
    display: none !important;
}

#logoGrey {
    display: inline !important;
}
