
input {
    margin: 0px;
    padding: 0px;
}

div.header {
    position: absolute;
    top: 0px;
    width:100%;
    height: 90px;
    background-color: white;
}

div.logo {
    position:relative;
    top: 10px;
    width: 350px;
    height: 70px;
    margin: auto;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
}

div.error {
    box-sizing: border-box;
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translate(-50%);
    padding: 3px 5px 3px 5px;
    text-align: center;
    background-color: #f2dede;
    font-size: 16px;
}

div.body {
    position: relative;
    margin: auto;
    top: 150px;
    min-height: 200px;
    width: 100%;
    background-color: #dee6e8;
}

div.input {
    position: relative;
    height: 30px;
    width: 250px;
    margin: 10px auto;
}

input.text {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background-color: white;
    border: none;
    font-size: 14px;
    padding: 0px 10px 0px 10px;
}

div.text {
    font-size: 17px;
    position: relative;
    max-width: 250px;
    margin: 10px auto;
}

div.title {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 30px;
    padding: 3px 0px 0px 50px;
    color: white;
    font-size: 17px;
    font-weight: bold;
    background-color: #66696a;
    margin-bottom: 20px;
}

div.button-cont {
    position: relative;
    width: 250px;
    margin: 10px auto;
    display:flex;
    flex-direction:row;
    justify-content: center;
}

button.button-ok {
    box-sizing: border-box;
    height: 30px;
    padding: 3px 20px;
    color: white;
    font-size: 17px;
    background-color: #fcb205;
    border: none;
    cursor: pointer;
    margin: 5px 5px 30px 0px;
    text-align: center;
}

button.button-cancel {
    box-sizing: border-box;
    height: 30px;
    padding: 3px 20px;
    color: white;
    font-size: 17px;
    background-color: #66696a;
    border: none;
    cursor: pointer;
    margin: 5px 0px 30px 5px;
    text-align: center;
}

@media(min-width: 350px) {
    div.body {
        width: 350px;
    }
    div.error {
        width: 350px;
    }
    div.header {
        background-position-x: 135px;
    }
}
