/*
	Welcome Page Styles go here
*/

.portal-gate #branding {
	padding: 10px 0;
}

.portal-gate main {
	min-height: 100vh;
	background-image: url("/wp-content/themes/lekkerland/img/welcome.jpg");
	background-size: cover;
}

.portal-welcome {
	max-width: 400px;
	margin: 10% auto 10% auto;
}

@media(max-width:600px) {
	.portal-welcome {
		margin: 20% 5%;
	}	
}

.portal-box {
	padding: 10%;
	background: white;
}

.portal-box h4 {
	font-size: 25px;
}

.help {
	padding-top: 10%;
	color: #999;
}

.help a, #copyright a {
	color: #31363a;
}

.portal-box {
    opacity: 0;
    transform: translateY(20px);
    animation: portalBoxIn .7s ease .15s forwards;
}

@keyframes portalBoxIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.portal-welcome form {
    max-width: 340px;
    margin: 0 auto;
}


.portal-welcome input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    color: #222;
    background: #f3f3f3;
    border: 1px solid #d5d5d5;
    outline: none;
    transition: all .15s ease;
}


.portal-welcome input::placeholder {
    color: #999;
    opacity: 1; 
}

.portal-welcome input[type="password"]:focus,
.portal-welcome input[type="password"]:active {
    border-color: #888;
    background: #fafafa;
}


.portal-welcome button {
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: #31363a;
    border: none;
    cursor: pointer;
    transition: background .15s ease;
}


.portal-welcome button:hover {
    background: #1f2326;
}


.portal-welcome button:active {
    background: #000;
}

.portal-welcome input:focus {
    box-shadow: 0 0 0 3px rgba(49,54,58,.12);
}

.portal-welcome .error {
    color: #b00020;
    margin: 8px 0;
}
