/* HTML & Body */

html,
body {
	font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
	margin: 0;
	padding: 0;
}

/* Main wrapper*/

main {
	display: flex;
}

a {
    outline: none !important;
    border: none !important;
}

/* Column Sections */

main > section {
	flex: 1;
    display: flex;
    min-height: 100vh;
	justify-content: center;
	align-items: center;
}

/* Login Section */

#loginForm {
	display: flex;
	flex-direction: column;
	width: 85%;
	max-width: 375px;
}

#loginLogo {
	max-width: 200px;
    margin-bottom: 35px;
    border-radius: 6px;
}

h1 {
	font-weight: 600;
	font-size: 38px;
	margin: 5px 0;
}

h3 {
	color: #9ca3af;
	font-weight: 500;
	font-size: 18px;
	margin: 5px 0 40px 0;
}

#loginForm label {
	font-weight: 500;
	font-size: 14px;
}

/* Form fields */

#loginForm input {
    all: unset;
	border: 1px solid #d1d5db;
	border-radius: 6px;
    padding: 12px;
	margin: 8px 0 20px 0;
}

#loginForm input:focus {
    border: 2px solid #0ea5e9;
    margin: 7px -1px 19px -1px;
}

#loginForm input::placeholder {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #9ca3af;
	opacity: 1;
}

#loginForm input:-ms-input-placeholder {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #9ca3af;
}

#loginForm input::-ms-input-placeholder {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #9ca3af;
}

/* Form button */

#loginForm input[type="submit"] {
	background-color: #1f2937;
    border: 1px solid #1f2937;
    color: white;
    cursor: pointer;
    text-align: center;
    transition: 0.15s background-color, 0.15s border;
}

#loginForm input[type="submit"]:hover {
    background-color: #374151;
    border: 1px solid #374151;
}

#loginForm input[type="submit"]:focus {
    background-color: #374151;
    border: 1px solid #374151;
}

/* Image Section */

main > section#heroImage {
	background: url("heroImage.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Media Queries */

@media only screen and (max-width: 1100px) {
    main > section#login {
        flex: 2;
    }
    main > section#heroImage {
        flex: 1;
    }
}

@media only screen and (max-width: 900px) {
    main > section {
        padding: 15px;
    }
    main > section#login {
        flex: 1;
    }
    main > section#heroImage {
        display: none;
    }
}

@media only screen and (max-width: 460px) {
    main > section {
        min-height: 0;
        padding: calc(30px + 5%) 15px;
    }
}