:root {
    --base-color: blue;
}

body, html{
    height: 100vh;
    margin: 0;
}

.HomePageContainer {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../assets/img/bg.jpeg') no-repeat center fixed;
    background-size: cover;
}

.HomePageContainer > form {
    height: 20rem;
    width: 60vh;
    border: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.HomePageContainer > form > input {
    width: 66%;
    height: 50px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    padding: 0 10px;
}

.HomePageContainer > form > button {
    width: 8rem;
    height: 50px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    background: var(--base-color);
    color: white;
    cursor: pointer;
}