* {
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    margin: 0;
}

.screen {
    display: flex;
    height: 100vh;
}

.leftside {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leftside img {
    width: 80%;
    max-width: 500px;
    height: auto;
}

.rightside {
    width: 400px;
    background-color: #BBB;
    padding: 50px;
}

.rightside label {
    display: block;
    margin-bottom: 20px;
}

.rightside input {
    width: 100%;
    border: 1px solid #999;
    border-radius: 5px;
    padding: 8px;
    font-size: 14px;
    outline: 0px;
}

.error {
    font-size: 11px;
    background-color: #FF0000;
    padding: 4px;
    color: #fff;
    border-radius: 5px;
}