﻿.app .ui.signup.card {
    opacity: 0;
    /*background: #fdf8ec;*/
    position: absolute;
    top: -100%;
    left: 10px;
    z-index: 1000;
    transition: opacity 0.1s linear, top 0.5s ease-in;
}
    .app .ui.inverted.signup.card {
        background: #1b1c1d;
        color: #fff;
    }

    .app .ui.visible.signup.card {
        opacity: 1;
        top: 65px;
        transition: opacity 0.1s 0.4s linear, top 0.5s ease-out;
    }
