@import 'typography.css';
@import 'spacing.css';
@import 'colors.css';
body {
    height: 100vh;
    background: #FF4646; /* fallback for old design, will remove after aligning with latest designs */
    padding-top: 0 !important
}

p {
    font-size: 14px;
}

.center-block {
    margin: auto;
    display: block;
}

.sign-in-button {
    color: #FFF;
    background: #5ED8D8;
    border-radius: 15px;
    width: 250px;
    display: inline-block;
    font-family: sans-serif;
    font-weight: 600;
    text-align: center;
    border-color: transparent;
    padding-left: 8px;
    padding-right:8px;
}
.signup-page{
    margin: 20px auto;
    opacity: 0.9;
    background-color: white;
    border-radius: 10px;
}

.signup-page .signup-logo img{
    max-width: 250px;
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
a { color: #F15455; }
.link {
    font-size: 14px;
    font-weight: bold;
}

.title {
    font-family: sans-serif;
    font-size: 40px;
    color: #414141;
}

::placeholder {
    color: var(--hotspot-grey_500);
    font-size: 14px;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.sign-in-divider {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    color: var(--hotspot-grey_200);
    gap: 8px;
}

.sign-in-divider:before, .sign-in-divider:after {
    content: "";
    flex: 1 1;
    border-bottom: 1px solid;
    margin: auto;
}

.reveal-btn {
    padding: 0;
    border: none;
    background: none;
    color: #5ED8D8;
    margin-top: 5px;
    right: 10px;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFF;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    right: -20px;
    bottom: -20px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover { background-color: #ddd }

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}

.country-btn {
    margin-left: 10%;
    width: 50px;
    height: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.login-panel {
    background-color: white;
    border-radius: 10px;
    padding: 2%;
    margin: 2%;
    opacity: 0.9;
}

.message-panel {
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 15px;
    padding: 2%;
}

.container-page {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.container-section-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: auto;
    position: relative;
    flex-direction: column;
}

.container-inner-section {
    flex: 1;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-card {
    max-width: 465px;
    padding: var(--spacing-30);
    border-radius: var(--spacing-28);
    border: 1px solid #E0DFDF;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    zoom: 1;
    display: flex;
    flex-direction: column;
    gap:  var(--spacing-16);
}

.footer {
    position: relative;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-12) var(--spacing-60);
    z-index: 9;
    position: absolute;
    bottom: 0;
}

.footer .right {
    right: 2%;
    position: relative;
}

.optional-buttons {
    border-radius: var(--spacing-4);
    border: 1px solid #dadce0;
    padding: 0 var(--spacing-12);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    color: #3c4043;
    gap:12px;
}

.optional-buttons:hover, .optional-buttons:focus, .optional-buttons:active {
    background-color: rgba(66, 133, 244, .08) !important;
    border-color: rgb(210, 227, 252) !important;
    color: #3c4043 !important;
}
.optional-buttons:focus-within{
    background-color: rgba(66, 133, 244, .08);
    color: #3c4043;
    outline: 2px solid #00639b;
    border-color: transparent;
}

.logo-container {
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
}

.logo-container img {
    width: 50%;
    object-fit: cover;
}

.sm-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-12);
}

.creation-acc-checkmark {
    width: 18px !important;
    height: 18px !important;
}

.membership-wrapper {
    padding: var(--spacing-8) var(--spacing-12);
    border-radius: var(--spacing-12);
    background-color: var(--hotspot-info_50);
}

@media (max-width: 500px) {
    .logo-container {
        display: none;
    }

    body {
        background-color: var(--base-white);
    }

    .footer {
        display: none;
    }

    .container-card{
        box-shadow: none;
        border: none;
        border-radius: 0;
        flex: 1;
    }
}
@media (min-width: 501px) {
    .sm-footer {
        display: none;
    }
}

@media (max-width: 500px) {
    .container-card {
        max-width: 100%;
        width: 100%;
        padding: 16px;
    }
}

.google-signin-button,
.optional-buttons {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

.google-signin-button {
    display: flex;
    justify-content: center;
}

@media (max-width: 500px) {
    .google-signin-button,
    .optional-buttons {
        width: 328px;
        max-width: 100%;
    }
}
