﻿html, body {
    height: 100%;
    color: #333333;
    font-family: "Segoe UI";
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    grid-template-rows: min-content 1fr;
}

.bottom-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.image {
    height: auto;
    max-width: 1250px;
    width: 100%;
    margin: 25px 0;
}

.button {
    height: 40px;
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    border: 1px solid #afafaf;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    box-sizing: border-box;
    color: #333333;
    font-size: 17px;
    text-decoration: none;
}

.button:hover,
.button:focus {
    background-color: #eceeee;
    outline: none;
}

.logo {
    height: 45px;
    width: 150px;
    padding: 30px;
}

.or {
    font-size: 24px;
    margin: 0 20px;
}

.sign-in-pane {
    display: flex;
    align-items: center;
}

.welcome-pane-container {
    display: grid;
    grid-template-columns: 1fr min-content;
}

.welcome-pane {
    display: grid;
    grid-template-rows: repeat(2, min-content);
    row-gap: 40px;
    background-image: url('../../images/Connect_LandingPage_branding.svg');
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding-top: 280px;
    padding-left: 275px;
}

.welcome-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

@media screen and (max-width: 1000px),
       screen and (max-height: 800px) {
    .bottom-container {
        align-items: flex-start;
    }

    .button {
        height: 30px;
        width: 130px;
        font-size: 13px;
    }

    .or {
        font-size: 20px;
    }

    .welcome-pane {
        padding-left: 197px;
        padding-top: 200px;
        row-gap: 20px;
    }

    .welcome-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 750px) {
    .logo {
        padding: 15px
    }

    .or {
        font-size: 16px;
    }

    .welcome-pane {
        width: 320px;
        padding-left: 127px;
        padding-top: 130px;
    }

    .welcome-title {
        font-size: 20px;
    }
}