

body {
    background: #262e49;

    align-items: center;
    justify-content: center;
    min-height: 100px;
}



.doboz {
    font-size: 20px;
    margin: auto;
    background: #212942;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border-radius: 9px;
    border-top: 10px solid steelblue;
    border-bottom: 10px solid #8BD17C;
    box-shadow: 1px 1px 108.8px 19.2px rgb(25,31,53);
    overflow: hidden;
}

.doboz h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #ecedef;
    text-align: center;
    margin-top: 30px;

}
.doboz h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #a1a4ad;
    letter-spacing: 1.5px;

}

.doboz h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #5c6bc0;
    font-size: 18px;

}

.doboz h3 span {
    color: #dfdeee;
    font-weight: lighter;
}


.doboz input[type=submit] {
    background: #5c6bc0;
    width: 100%;
    padding: 8px 5px;
    margin: 8px 0;
    border: 0px;
    border-radius: 4px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
}

.doboz input[type=submit]:hover {
    background-color: darkslateblue;

}

.doboz input[type=text] {
    background-color: #262e49;
    font-size: 13px;
    width: 100%;
    padding: 8px 5px;
    margin: 8px 0;

    border: 0px;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    color: #d6d6d6;

}

.doboz input[type=text]:focus {
    border: 1px solid grey;

}

.doboz p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #a1a4ad;
    letter-spacing: 1.5px;

}


.footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;

    font-size: 14px;
    text-align: center;
}

.footer p {
    font-family: 'Source Sans Pro', sans-serif;
    color: #78797d;
    text-align: center;
}




a {
    text-decoration: none;
    color: #5c7fda;;
}

a:hover {
    text-decoration: underline;
}

