/* 
    Created on : Jun 25, 2019, 2:16:08 PM
    Author     : a.giannoudakis
*/
* {
    font-family: Arial
}

body{
    background-image:url(/SYDIPA/resources/images/city2.jpg); 
    background-position: left top;
    background-attachment: fixed;
    background-size: cover;
    padding: 0;
    margin: 0;
}

.formDiv {
    border: 1px solid #78B7E4;
    background-color: rgba(255,255,255,.3);
    width: 20%; /* IE */
    width: intrinsic;           /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;    /* Firefox/Gecko */
    width: -webkit-max-content;
    padding:1em;
    margin: 0 auto;
    margin-top: 2em;
}
.formDiv:hover {
    background-color: rgba(255,255,255,.5);
}
.button1 {
    background-color: #2399E5;
    color: white;
    border: 2px solid #1c88ce;
    border-radius: 4px;
    width: 25%;
    padding: 0.25em;
}
.button1:hover {
    background-color: #1c88ce;
    cursor: pointer;
}
label {
    display: inline-block; 
    width: 113px;
}
input {
    margin-left:0px; 
    width:250px;  
}

@media only screen and (-moz-min-device-pixel-ratio: 2), 
only screen and (-o-min-device-pixel-ratio: 2/1), 
only screen and (-webkit-min-device-pixel-ratio: 2), 
only screen and (min-device-pixel-ratio: 2) {
    body{
        font-size: 35px;
    }
    .button1 {
        background-color: #2399E5;
        color: white;
        border: 2px solid #1c88ce;
        border-radius: 4px;
        width: 30%;
        padding: 0.1em;
        font-size: 35px;
    }
    .button1:hover {
        background-color: #1c88ce;
        cursor: pointer;
    }
    label {
        display: inline-block; 
        width: 300px;
    }
    input {
        margin-left:0px; 
        width:350px; 
        height: 60px; 
        font-size: 35px;
    }
}