﻿html, body {
    height: 100%;
}

body {
    padding-top: 0;
    padding-bottom: 0;
    background: url(../content/images/perenso_background.jpg) no-repeat center fixed;
    background-size: cover;
}

.noise {
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100%;
}

.noise #parent-container {
    border-radius: 16px;
    background-color: #FFF;
    padding: 48px;
    text-align: center;
}

/*portal header bar*/
#portal-header-bar {
    width: 100%;
    min-height: 78px;
    padding: 12px 0px;
    border: 2px solid #F6F6F6;
    border-radius: 12px;
    box-shadow: 0px 2px 20px rgba(85, 85, 85, 0.03), 0px 3px 10px -2px rgba(85, 85, 85, 0.01);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 27px;
    white-space: nowrap;
    text-align: center;
}

    #portal-header-bar:hover {
        background-color: rgba(37, 93, 134, 0.07);
    }

    #portal-header-bar .portal-icon-wrapper {
        width: 54px;
        height: 54px;
        background: rgba(37, 93, 134, 0.07);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #portal-header-bar #bar-left-panel {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px 12px;
        gap: 16px;
    }

.portal-icon-wrapper .portal-icon {
    width: 24px;
    height: 24px;
    color: rgba(37, 93, 134, 0.3);
}

.portal-heading-text {
    color: #666666;
    font-size: 16px;
    font-weight: 600;
}

#logo {
    margin-top:64px;
    margin-bottom: 48px;
    width: 283px;
    height: 98px;
}

@media only screen and (max-width: 400px) {
    #logo {
        width: 220px;
        height: 73px;
    }
}

@media only screen and (max-width: 300px) {
    #logo {
        width: 170px;
        height: 56px;
    }
}

#select-portal-heading {
    font-size: 20px;
    font-weight: 700;
    color: #525252;
}

#login-container {
    max-width: 840px;
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

    #login-container a {
        text-decoration: none !important;
        width: 200px;
        height: 200px;
        border: 2px solid #F6F6F6;
        border-radius: 4px;
        padding-top: 50px;
        padding-bottom: 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

        #login-container a:hover {
            background-color: rgba(37, 93, 134, 0.07);
            cursor: pointer;
        }

        #login-container a .portal-icon {
            width: 48px;
            height: 48px;
            color: rgba(37, 93, 134, 0.3);
            margin-bottom: 20px;
        }
        

        #login-container a .portal-name {
            color: #666666;
            font-size: 16px;
            font-weight: 600;
            width: 116px;
        }
        
        #login-container a:hover .portal-icon, 
        #login-container a:hover .portal-name {
            color: #255D86;
        }

#downloads-header, #downloads-disabled-header {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    margin: 30px auto 10px;
}

#downloads-disabled-header {
    font-size: 18px !important;
    max-width: 550px;
}

#downloads-container #downloads-list-item-wrapper {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    #downloads-container #downloads-list-item-wrapper .downloads-list-item {
        background-color: rgba(37, 93, 134, 0.02);
        border-radius: 1px;
        padding: 24px;
        width: 100%;
        height: 75px;
        text-align: left;
    }

        #downloads-container #downloads-list-item-wrapper .downloads-list-item .downloads-list-item-label {
            color: #255D86;
            font-weight: 600;
            font-size: 20px;
        }

        #downloads-container #downloads-list-item-wrapper .downloads-list-item:hover {
            background-color: #255D86;
        }

            #downloads-container #downloads-list-item-wrapper .downloads-list-item:hover .downloads-list-item-label {
                color: #FFF;
                text-decoration: underline;
            }

.login-form-button {
    width: 100%;
    height: 59px;
    background-color: #F26721 !important;
    border-color: #F26721;
    border-radius: 4px;
    border-width: 10px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    max-width: 550px;
}

    .login-form-button:hover, .login-form-button:focus {
        background-color: #D04E33 !important;
        border-color: #D04E33;
    }

    .login-form-button:disabled {
        background-color: #F26721 !important;
        border-color: #F26721;
    }

        .login-form-button:disabled:hover {
            background-color: #F26721 !important;
            border-color: #F26721;
        }

#exit-downloads-button {
    width: 100px;
    height: 59px;
    color: #666666;
    background-color: #F6F6F6;
    border-radius: 4px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}

    #exit-downloads-button:hover {
        text-decoration: none;
    }

@media only screen and (max-width: 600px) {
    #login-container {
        display: flex;
        flex-direction: column;
    }

        #login-container a {
            width: 100%;
            max-height: 124px;
            padding: 32px;
            flex-direction: row;
            align-items: center;
        }

            #login-container a .portal-icon {
                margin-bottom: 0px;
            }

            #login-container a .portal-name {
                width: auto;
                margin-left: 8px;
            }
}

#login-footer {
    text-align: center;
}
    #login-footer a {
        text-decoration: underline;
        color: #000;
    }

        #login-footer a:hover {
            color: #F26721;
        }

        #login-footer hr {
            max-width: 570px;
            margin-left: auto;
            margin-right: auto;
        }
