﻿/* definicja stylu body - koment widoczny w css */
body {
    background: rgb(255, 255, 255);
    background-image: url("/images/login_background.jpg");
    font-family: "Segoe UI";
    font-weight: 400;
    background-size: auto;
    padding-top: 10%;
}

label {
    font-weight: normal
}

div .col-md-4 {
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    border: 1px dashed rgb(162, 162, 162);
    padding: 30px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.own-input {
    border-bottom: solid rgb(224, 224, 224);
    border-width: 0;
    border-bottom-width: 2px;
    font-family: "Segoe UI";
    font-weight: 400;
    padding: 12px;
    padding-bottom: 6px;
    padding-top: 6px;
    margin-bottom: 10px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

    .own-input:focus {
        border-bottom: solid rgb(26, 188, 156);
        border-bottom-width: 2px;
        outline: none;
    }

    .own-input:hover {
        background: rgb(248, 248, 248);
        outline: none;
    }

.own-button {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    font-size: 16px;
    background: lighten(rgb(26, 188, 156), 10%);
    color: rgb(255, 255, 255);
    border-width: 0;
    border-bottom: solid rgb(26, 188, 156);
    border-bottom-width: 4px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

    .own-button:disabled {
        background: rgb(170,180,170);
    }

    .own-button:hover {
        background: rgb(26, 188, 156);
        border-bottom: thick solid darken(rgb(26, 188, 156), 10%);
        border-bottom-width: 4px;
    }

input {
    max-width: 100%;
}
