﻿.loginbutton {
    display: inline-block;
    box-sizing: border-box;
    width: 90%;
    margin: 10px 5%;
    position: relative;
    background: #4D9BC1;
    border: 2px solid #4D9BC1;
    border-radius: 0.5rem;
    padding: 1em 2em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition-duration: 0.0s;
}

    .loginbutton:before {
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        left: 25px;
        margin-top: -6px;
    }

    .loginbutton:hover {
        background: #fff;
        color: #4D9BC1;
    }

        .loginbutton:hover:before {
            border-top: 2px solid #4D9BC1;
            border-right: 2px solid #4D9BC1;
        }


input[type=text], input[type=password] {
    border: 2px solid #4D9BC1;
    box-sizing: border-box;
    width: 90%;
    padding: 10px;
    margin: 10px 5%;
    border-radius: 0.5rem;
}

input[type=checkbox] {
    margin: 0 10px 20px 10px;
}

.sub {
    text-align: left;
    margin: 10px 5% 0 5%;
}

.text {
    margin: 10px 0;
}

.logintitle {
    margin: 10px 0;
}