﻿
.outside-container {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.outside-sub-container {
    height: 100vh;
    display: grid;
    place-content: center;
}

.outside-content {
    padding: 30px;
    border-radius: 7px;
    background-color: #fff;
}

.outside-content-fixed {
    max-width:360px;
    padding: 30px;
    border-radius: 7px;
    background-color: #fff;
}

.outside-logo {
    display: grid;
    place-content: center;
}

    .outside-logo > img {
        max-height: 150px;
        max-width: 300px;
    }

.outside-title {
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    font-weight:600;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.outside-subtitle {
    margin-bottom:30px;
}

.outside-copyright {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    color: #999;
    font-size: 13px;
}
