* {
    padding: 0;
    margin: 0;
}

body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 100%;
    min-height: 100vh;
}

form {
    box-sizing: border-box;
    min-height: 100vh;
}

.form {
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
}

h1 {
    font-size: 48px;
    color: #555;
    margin-bottom: 5px;
}

h3 {
    font-size: 24px;
    color: #888;
    font-weight: 100;
    margin-bottom: 40px;
}

label {
    display: block;
    font-size: 18px;
    color: #111;
    margin-top: 15px;
    margin-bottom: 5px;

}

input {
    display: inline-block;
    width: 90%;
    height: 30px;
    border: 0px;
    border-left: 1px solid #888;
    border-bottom: 1px solid #888;
    border-radius: 3px;
    margin-bottom: 10px;
    padding-left: 10px;
}

input:focus {
    outline: none;
    border: 1px solid #555;
    border-radius: 4px;
}

.logo-depen {
    background-image: url('../img/logo_depen.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-left: 1px solid #CCC;
}

.send {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    width: 90%;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
}

.button {
    box-sizing: border-box;
    width: 180px;
    height: 35px;
    background-color: lightseagreen;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
    border: 0px;
    cursor: grab;
}

a {
    text-decoration: none;
    cursor: grab;
}

a:hover {
    opacity: 0.6;
}

.link {
    font-size: 18px;
    margin-top: 20px;
    color: #555;
    font-weight: 600;
    padding-top: 7px;
}

.icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    width: 90%;
    margin-top: 30px;
}

.icon-depen {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: 0px;
    margin-bottom: 10px;
}

.center {
    text-align: center;
}

.hide {
    display: none;
}

.msgerror {
    display: block;
    color: darkred;
}

@media (max-width: 1000px) {
    .link { font-size: 16px; }
    .button {
        width: 140px;
        font-size: 16px;
    }
}

@media (max-width: 800px) {

    .logo-depen { display: none; }

    .hide { display: block; }

    body { grid-template-columns: 1fr; }
}

