@import url("philantro.css");

#philantro-logo-svg.dark {
    fill: #181818;
    width: 100px;
}
#error-message-container:not(:empty){
    top: 30px;
}
.grid-container {
    display: grid;
    align-items: center;
    height: 100vh;
    width: 100%;
    justify-content: center;
    overflow-x: hidden;
}

.login-container{
    width: 500px;
    margin: 50px 0;
}
.login-container > section{
    padding: 50px;
    border: 1px solid #eaeaea;
    box-shadow: 0 1px 2px #0000001f;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
}
.login-container main{
    padding: 30px 0 0;
}
.login-container > footer{
    max-width: 500px;
    background-color: unset;
    text-align: center;
    padding: 40px 30px 0;
    box-sizing: border-box;
}
footer > .helpful-links{
    margin-top: 20px;
}
.button-large{
    color:#fff;
    font-weight: bold;
    background-color: var(--color-primary);
    padding: 20px 30px;
    border: none;
}
p{
    color:#767676;
    line-height: 1.5em;
}
a{
    color:inherit;
}
.switch-box{
    margin-top: 20px;
}
div.notice{
    padding: 20px;
    border-radius: var(--border-radius);
}
.notice.error,
#errors > .notice{
    background-color: #ffefef;
    color: #8a2d2d;
}
.full-grid:empty{
    display:none;
}
input[type=text] + button#toggle-visibility{
    color: var(--color-primary);
}
button#toggle-visibility{
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-secondary);
    background: none;
    border: none;
    height: 50px;
    width: 50px;
}
@media only screen and (max-width: 500px) {

    .login-container{
        width: calc(100% - 30px);
        margin: 15px;
    }
}