﻿
/* BASIC */

html {
    background-color: #56baed;
}

body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a {
    text-decoration: underline;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

.logo {
    text-align: center;
}


/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    /*padding: 20px 20px 200px 20px;
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(153,255,102,1) 0%, rgba(255,255,255,1) 100%);*/
    background: linear-gradient(180deg, rgb(255,255,255) 0%, rgb(255,255,255) 50%, rgb(0,79,162) 50%, rgb(0,79,162) 100%);
}

.hash-modal {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transform: translateY(-18%);
        position: relative;
        z-index: 1;
        font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
        min-width: 460px;
}
.hash-modal .hash-modal__header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #85A5B6;
        min-width: 370px;
        margin: 0 0 55px;
}
.hash-modal .hash-modal__header .logo {
		width: auto;
		margin: 0 9px 0 0;
}

.hash-modal .hash-modal__header h2 {
		font-size: 16px;
		font-weight: 500;
		color: #212529;
		margin: 13px 0 0 0;
}

#formContent {
    /*background: #EEEDEE;*/
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    /*-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);*/
    box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.5);
}

#btnLogin, #btnReg {
    /*border: solid 1px #ced4da;
    color: #000 !important;*/
    background: RGB(0, 79, 162);
    border-color: RGB(0, 79, 162);
    outline: 0;
    padding: 10px 65px;
    margin-top: 20px;
    font-size: 15px;
    color: #fff;
}
/*
    #btnLogin:focus, #btnReg:focus {
        border: solid 1px #80bdff;
    }
    button:hover {
        background: #F2F2F2 !important;
    }
*/
#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }


#icon {
    width: 90%;
}

.error-message {
    display: none;
    margin-top: 3px;
    margin-bottom: 1px;
}