﻿* {
    box-sizing: border-box;
    font-size: 0.5cm;
}

input[type=text], input[type=password], select, textarea {
    width: 100%;
    padding: 0.2cm;
    border: 0.1cm solid #ccc;
    border-radius: 0.1cm;
    resize: vertical;
}

.label {
    padding-top: 0.2cm;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 0.2cm;
    border: 0.1cm solid #4CAF50;
    border-radius: 0.1cm;
    -moz-border-radius: 0.1cm;
    -webkit-border-radius: 0.1cm;
    -webkit-appearance: none;
    cursor: pointer;
    float: right;
    margin-left: 0.3cm;
    width: 100%;
}

input[type=submit]:hover {
    background-color: #45a049;
    cursor: pointer;
}

input[type=submit]:disabled {
    background-color: lightgray;
    cursor: default;
}

.img {
    width: 7cm;
    height: 7cm;
    max-width: 45vw;
    max-height: 45vw;
}

.container {
    position: absolute;
    left: 50%;
    top: 1%;
    transform: translate(-50%, 0%);
    width: 15cm;
    max-width: 99vw;
    min-height: 98%;
    border-radius: 0.5cm;
    background-color: #f2f2f2;
    padding: 0.5cm;
}

.containerTop {
    width: 14cm;
    max-width: 89vw;
    margin-top: 5vh;
    margin-bottom: 10vh;
}

.containerCenter {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    width: 14cm;
    max-width: 89vw;
}

.pageFooterLeft {
    position: absolute;
    bottom: 0cm;
    z-index: 99;
}

.pageFooterRight {
    position: absolute;
    bottom: 0.2cm;
    right: 0.5cm;
    float: right;
    z-index: 99;
}

.col-25 {
    float: left;
    width: 25%;
}

.col-33 {
    float: left;
    width: 33%;
}

.col-67 {
    float: left;
    width: 67%;
}

.col-75 {
    float: left;
    width: 75%;
}

.col-100 {
    float: left;
}

.row {
    margin-top: 0.3cm;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}