@import url('https://fonts.googleapis.com/css?family=Montserrat:500,700&amp;display=swap');


body,
html {
    background: #a6b2e4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body,
p,
input,
select,
textarea,
button {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
    font-size: 16px;
}

.title1{
    margin: 23px;
}

.title-form{
    color: #babecc;
    text-shadow: 1px 1px 1px #fff;
}

form {
    border-radius: 10px;
    background: #ebecf0;
    padding: 40px;
    width: 330px;
    margin-top: 18%;
    box-shadow: inset 1px 1px 5px #babecc;
}

.segment {
    padding: 23px 0 35px;
    text-align: center;
}

button,
input {
    border: 0;
    outline: 0;
    font-size: 16px;
    padding: 16px;
    background-color: #ebecf0;
    text-shadow: 1px 1px 0 #fff;
    border-radius: 320px;
}

label{
    display: block;
    margin-bottom: 24px ;
    width: 100%;
}

input{
    margin-right: 8px;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #fff;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
}

input:focus{
    box-shadow: inset1px 1px 2px #babecc, inset -1px -1px 2px #fff;
}

button{
    color: #61677c;
    font-weight: bold;
    box-shadow: -5px -5px 20px #fff,5px 5px 20px #babecc ;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
}

button:hover{
    box-shadow: -2px -2px 5px #fff, 2px 2px 5px #babecc;
}

button:active{
    box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #fff;
}

button.icon{
    margin-right: 8px;
}

button.unit{
    border-radius: 8px;
    line-height: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    font-size: 19.2px;
}

button.unit .icon{
    margin-right: 0;
}

button.red {
    display: block;
    width: 100%;
    color: #ae1100;
}

.input-group{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.input-group label{
    margin: 0;
    flex: 1;
}