:root {
    --color1: #fff;
    --color2: #F78F1E;
    --color2Hover: #415059;
    --color3: #fff;
}

/* Reset Default Settings */
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background-color: var(--color1);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;

    /* Flex */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: var(--color3);
    width: 700px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    padding:0;
    box-shadow: 0 0px 5px rgba(0,0,0,0.2);
}

.container__svgs {
    background-color: var(--color2);
    width: 50%;

    /* Flex */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container__svgs img {
    width: 70%;
}
.container__svg1 {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}

.container__svg2 {
    width: 170px;
    height: 18px;
}

.container__content {
    width: 50%;
    position: relative;

    /* Flex */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container__form {
    margin-bottom: 20px;
    
    /* Flex */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container__inputField {
    background-color: transparent;
    width: 220px;
    padding: 0 0 10px 5px;
    font-size: 15px;
    letter-spacing: 1px;

    /* Border */
    border: none;
    border-bottom: solid 1px var(--color2);
    border-radius: 0;
}

.container__inputField:first-of-type {
    margin-bottom: 35px;
}

.container__inputField:nth-of-type(2) {
    margin-bottom: 40px;
}

.container__inputField:focus-visible {
    border-bottom: solid 2px var(--color2Hover);
    outline: none;
}

.container__sumbitButton {
    background-color: var(--color2);
    color: var(--color3);
    width: 220px;
    padding: 15px 0;
    font-size: 14px;
    cursor: pointer;

    /* Text */
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Border */
    border: none;
    border-radius: 50px;
}

.container__sumbitButton:hover {
    background-color: var(--color2Hover);
}

.container__links {
    /* Position */
    position: absolute;
    /*left: 50%;*/
    bottom: 30px;
    /*transform: translateX(-50%);*/

    /* Flex */
    display: flex;
    align-items: center;
    justify-content: center;
}

.container__link {
    color: var(--color2);
    font-size: 12px;
    text-decoration: none;
}

.container__link:hover {
    text-decoration: underline;
}

.container__separator {
    background-color: var(--color2);
    width: 1px;
    height: 10px;
    margin: 0 15px;
}	    

@media (max-width: 768px) {
    .container { 
        flex-direction:column;
        height:500px;
        margin-top:100px;
        width:70%;
    }
    .container__svgs,
    .container__content { width: 100%; height:350px; }
    .container__svgs img { width: 50% }
    
    .container__svgs {
        height: 200px !important;
    }    
}