body{
    margin:0;
    background:#2f4f2f;
    font-family:Arial,Helvetica,sans-serif;
    color:#fff;
}

.container{
    max-width:700px;
    margin:auto;
    padding:20px;
}

h1{
    text-align:center;
    margin-bottom:25px;
    font-size:34px;
}

h2{
    text-align:center;
    font-size:26px;
}

label{
    display:block;
    margin-top:15px;
    margin-bottom:8px;
    font-size:22px;
    font-weight:bold;
}

select,
input[type=text],
input[type=password],
input[type=number],
textarea{

    width:100%;
    box-sizing:border-box;

    padding:16px;

    font-size:22px;

    border-radius:10px;

    border:none;

    margin-bottom:15px;

}

textarea{

    min-height:140px;

    resize:vertical;

}

button{

    width:100%;

    padding:18px;

    margin-top:10px;
    margin-bottom:15px;

    font-size:24px;

    font-weight:bold;

    border:none;

    border-radius:10px;

    background:#4CAF50;

    color:white;

    cursor:pointer;

}

button:hover{

    background:#3e9142;

}

#gpsStatus{

    padding:12px;

    background:#1d351d;

    border-radius:10px;

    text-align:center;

    font-size:20px;

    margin-bottom:15px;

}

#status{

    min-height:30px;

    text-align:center;

    font-size:22px;

    font-weight:bold;

    color:#ffd700;

    margin-top:15px;

}

@media(max-width:700px){

    .container{

        padding:15px;

    }

    h1{

        font-size:30px;

    }

    label{

        font-size:20px;

    }

    select,
    input,
    textarea{

        font-size:20px;

    }

    button{

        font-size:22px;

    }

}
