﻿html{
    font-size: 15px;
}

body {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px !important;
    color: black !important;
    font-family: "Noto Sans JP" !important;
    line-height: 1.5 !important;
}

.container {
    display: flex;
    justify-content: center;
    background-color: white;
}

.container .form-pane {
    padding: 0 20px;
}

.container .form-pane .three-divisions {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.container .form-pane .three-divisions .cover-center {
    height: 500px;
}

.container .form-pane .three-divisions img {
    width: 600px;
}

.container .form-pane .form-group {
    margin-bottom: 22px;
}

.container .form-pane .form-group .row {
    display: flex;
}

.container .form-pane .form-group .col {
    flex: 1;
}

.container .form-pane .font-discoveries-id {
    font-weight: bold;
    font-size: 15px;
    color: black;
    margin-bottom: 0.5rem;
}

.container .form-pane .forgot-text {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 50px;
    white-space: nowrap;
    height: 30px;
}

.container .form-pane .col {
    white-space: nowrap;
}

.container .form-pane .form-center {
    height: 500px;
}

.container .form-pane .form-center :not(.forgot-text) {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
}

    .container .form-pane input {
        border-color: #137AD1 !important;
        padding: 0.375rem 0.75rem;
        font-size: 14px;
        color: #212529;
    }

.container .form-pane input::placeholder {
    color: #212529;
}

.container .form-pane a {
    text-decoration: none;
    font-size: 14px;
}

#btnForgotPwd {
    background-color: #137AD1;
    color: white;
    font-size: 16px;
}

#btnBack {
    background-color: #137AD1;
    color: white;
    font-size: 16px;
}

.content-pane {
    padding: 0 20px;
    background-color: #E4ECF8;
}

.content-pane .three-divisions {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.content-pane .three-divisions .cover-center {
    height: 500px;
}

.content-pane .three-divisions .img {
    width: 100%;
}

.alert-dismissible {
    padding-right: 16px;
    font-size: 14px;
}

#authenticationEmail {
    border-radius: .375rem !important;
    height: 34.25px;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.d-lg-block {
    display: block !important;
}

.col-lg-8 {
    flex: 0 0 auto;
    width: 65%;
}

.alert {
    color: black;
}

.alert-danger {
    color: #58151c !important;
    font-weight: 900;
    background-color: #f8d7da;
    border-color: #f1aeb5;
    border-radius: 0.375rem;
}

.alert-warning {
    display: none;
    width: 100%;
    padding-right: 15px !important;
    background-color: #fff3cd;
    border-color: #ffe69c;
    color: #664d03 !important;
}

.alert-warning-email {
    display: none;
    padding-right: 15px !important
}

.alert-success {
    display: none;
    width: 100%;
    padding-right: 15px !important;
    background-color: #d1e7dd;
    color: #0a3622 !important;
    border-color: #a3cfbb;
}

input[type="email"]:focus {
    outline: 0;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.btn-signin {
    position: relative;
}

#btnForgotPwd {
    position: relative;
    display: inline-block;
    border-radius: 0.5rem;
}

.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px !important;
    height: 20px !important;
    animation: spin 2s linear infinite;
    min-width: unset !important;
    vertical-align: middle;
    display: none;
}

.copyright{
    font-size: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}