/* GLOBAL STYLES */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}


/*LAYOUT - IMAGE SECTION */

img {
    width: 50%;
    height: 100vh;
    object-fit: cover;
    float: left;
}


/* LAYOUT - LOGIN CONTAINER */

.container {
    width: 50%;
    float: right;
    padding-left: 225px;
    padding-top: 100px;
    box-sizing: border-box;
}


/* TYPOGRAPHY */

h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 15px;
}


/* FORM INPUTS */

input[type="text"],
input[type="password"] {
    width: 50%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #999;
}


/* BUTTONS */

button[type="submit"] {
    width: 50%;
    background-color: #c6e500;
    color: #333;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #b5d400;
}

button a {
    color: inherit;
    text-decoration: none;
}