* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    height: 80vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left--picture {
    width: 50%;
    height: 100px;
}

.left--picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.back {
    text-decoration: none;
    color: #676767;
    font-size: 0.9rem;
    font-style: italic;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

form {
    width: 80%;
    margin: 1rem auto;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

input {
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 2rem;
    width: 25%;
    margin: 0 auto;
    color: #676767;
}

input:focus {
    outline: none;
}

button {
    background-color: #2c59b6;
    color: white;
    padding: .5rem 2rem;
    border: none;
    border-radius: 5px;
}
