﻿html, body {
    height: 100%;
    width:100%;
}

body {
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    background: url(/images/cloud.svg) no-repeat;
}

.login-card {
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 20px;
    padding: 150px 30px 54px;
    border-radius: 1.25rem;
    background: #cbe5eda1;
    box-shadow: 0 100px 100px rgb(0 0 0 /10%)
}

    .login-card::before {
        content: "";
        position: absolute;
        top: -880px;
        left: 50%;
        translate: -50% 0;
        width: 1000px;
        height: 1000px;
        border-radius: 50%;
    }

    .login-card .logo {
        position: absolute;
        top: 30px;
        left: 50%;
        translate: -50% 0;
        width: 100px;
        height: 100px;
    }

    .login-card > h2 {
        font-size: 22px;
        font-weight: 300;
        margin: 0 0 25px;
        color: #2a3444;
    }

    .login-card > button {
        cursor: pointer;
        width: 100%;
        height: 56px;
        padding: 0 16px;
        background: #216ce7;
        color: #f9f9f9;
        border: 0;
        border-radius: 28px;
        text-align: center;
        letter-spacing: 2px;
        transition: all 0.375s;
    }
        .login-card > button > a {
            color: #f9f9f9;
        }



@media (width>= 500px) {
    .login-card {
        margin: 0;
        width: 360px;
    }
}
