* {
    margin: 0;
    box-sizing: border-box;
}

html,body {
    height: 100%;
}
body{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: linear-gradient(
        -135deg
        ,steelblue,cadetblue);
}

.form {
    width: 800px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 100px 40px
}

.credentials-form {
    width: 100%;
}

.title {
    font-family: 'Train One', 'Courier New';
    font-size: 72px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 54px;
}

.description {
    font-family: 'Ubuntu', 'Courier New';
    font-size: 20px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 54px;
}

.ssid, .password {
    margin-bottom: 15px;
}

.password input, .ssid select {
    outline: none;
    border: none;
    overflow: visible;
    font-family: 'Ubuntu', 'Courier New';
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 25px;
    padding: 10px 30px;
}

.ssid label, .password label {
    font-family: 'Ubuntu', 'Courier New';
    font-size: 16px;
    color: #333;
    line-height: 1.2;
    width: 100%;
    display: block;
}

button {
    font-family: 'Ubuntu', 'Courier New';
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #57b846;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    outline: none !important;
    border: none;
}