﻿/* set login screen styles in this sheet */

.display-mobile {
    display: none;
}

.title-tile {
    margin: auto;
    width: 375px;
    flex-shrink: 0;
    border-radius: 8px;
}

.padding-left {
    padding-left:25px;
}

.padding-bottom {
    padding-bottom: 10px;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.sub-content-container {
    display: inline-flex;
    height: 21px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
}


.link-button {
    background: none !important;
    border: none;
    padding: 0 !important;
    text-decoration: underline;
    cursor: pointer;
}

.device-trust-tile {
    margin: auto;
    width: 375px;
    flex-shrink: 0;
    border-radius: 8px;
    text-align:center;
    margin-top:10px;
}

@media only screen and (max-width: 500px) {
    .display-mobile {
        display: block;
    }

    .display-web {
        display: none;
    }

    .title-tile {
        width: 95%;
    }

    .device-trust-tile {
        width:95%;
    }
}

@media only screen and (min-width: 500px) and (max-width: 800px) {
    .title-tile {
        width: 80% !important;
    }

    .device-trust-tile {
        width: 80% !important;
    }
}