@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);

body, html {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    height: 100%;
    margin: 0;
}

#wrapper {
    width: 634px;
    height: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -225px;
    margin-left: -317px;
    text-align: center;
}

#fout {
    display: none;
    padding: 10px;
    position: absolute;
    width: 450px;
    margin-left: -225px;
    left: 50%;
    top: 20px;
    z-index: 1;
    background: #D23131;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.29);
}

#bordered {
    width: 600px;
    height: 210px;
    background: #00afdc;
    color: white;
    padding: 25px 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.29);
    font-weight: bold;
}

#logos {
    text-align: center;
    margin-bottom: 25px;
}

#logos img {
    height: 80px;
    width: inherit;
    margin: 0 15px;
}

form {
    display: block; 
    overflow: auto;
    width: 450px;
    margin: 10px auto auto auto;
}

.code {
    float: left;
    margin: 5px;
    height: 40px;
    width: 40px;
    border: 2px solid #0080a1;
    font-size: 26px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 50%;
}

.code:focus, .code:active, button:focus, button:active {
    outline: none !important;
}

#logo {
    border-bottom: 2px solid #00afdc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#logo img {
    width: 280px;
    margin-top: 30px;
    margin-left: 25px;
}

#help {
    margin-top: 5px;
    font-size: 12px;
    color: #006991;
}

#help a {
    color: black!important;
}

button {
    display: block;
    margin: auto;
    color: white;
    background: #0083a5;
    border: none;
    font-family: "Open Sans";
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 6px;
    margin-top: 20px;
}

button:hover {
    background: #006d8a;
}

.mobile #wrapper {
    width: 100%;
    position: inherit;
    margin: 0;
}

.mobileCode {
    margin: auto;
    height: 40px;
    width: 90%;
    border: 2px solid #385D8A;
    font-size: 26px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 8px;
}

.mobile #bordered {
    width: 100%;
    margin: auto;
    border: none;
    border-radius: 0;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    overflow: auto;
    height: initial;
    box-sizing: border-box;
}

.mobile #fout {
    width: 100%;
    margin: 0;
    left: 0;
    top: 0;
    border-radius: 0;
    box-sizing: border-box;
}

.mobileWrap {
    display: none;
}