﻿@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500");

body {
    background: rgb(48, 48, 48);
    background: radial-gradient(circle at bottom right, rgba(236,75,0,1) 0%, rgba(142,61,24,1) 30%, rgba(95,55,36,1) 50%, rgba(48, 48, 48,1) 80%);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

    body .container {
        display: flex;
        display: block;
        justify-content: center;
        padding-bottom: 40px;
    }

        body .container .card {
            border-radius: 16px;
            margin-top: 40px;
            margin-left: auto;
            margin-right: auto;
            max-width: 90%;
            width: 100%;
            position: relative;
        }
        
        /* For smaller forms/cards, use a narrower width */
        body .container .card.narrow {
            max-width: 480px;
        }

            body .container .card .header {
                top: 0;
                margin-bottom: 16px;
            }

                body .container .card .header .title {
                    font-weight: 300;
                    font-family: Roboto, sans-serif;
                    color: black;
                    margin: 0;
                }

                body .container .card .header .subtitle {
                    font-weight: 400;
                    font-family: Roboto, sans-serif;
                    margin: 0;
                    color: #f06d06;
                }

                body .container .card .header .logo {
                    width: 60px;
                    height: 60px;
                    position: absolute;
                    right: 20px;
                    top: 20px;
                    background-image: url('../images/logo.png');
                    background-size: contain;
                    background-repeat: no-repeat;
                }

            body .container .card .body {
                margin-left: 6px;
                margin-right: 6px;
            }

                body .container .card .body .formfield {
                    height: 33px;
                    padding-top: 15px;
                    margin-bottom: 20px;
                }

                body .container .card .body kbd {
                    background-color: rgba(0, 0, 0, 0.08);
                }

                body .container .card .body .disabled {
                    color: rgba(0, 0, 0, 0.4);
                    border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
                }

            body .container .card .flex-row {
                display: flex;
            }

                body .container .card .flex-row.end {
                    justify-content: flex-end;
                }

                body .container .card .flex-row.space-between {
                    justify-content: space-between;
                }
