@charset "utf-8";
/* CSS Document */

	/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

      * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            height: 100vh;
            background-color: #89b9ff;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #343434;
        }

        .neumorphic-card {
            background-color: #0d6efd;
            width: 400px;
            height: auto;
            margin: 1rem;
            padding: 2rem;
            border-radius: 10px;
            box-shadow:
                10px 10px 22px rgba(0, 0, 0, 0.2),
                -10px -10px 22px rgba(255, 255, 255, 0.75);
        }

        .neumorphic-card__header {
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
        }

        .neumorphic-form {
            margin: 2rem 0;
        }

        .neumorphic-input-wrapper {
            width: 100%;
            margin-bottom: 0.5rem;
            display: flex;
            flex-direction: column;
        }

        .neumorphic-input-wrapper label {
            font-size: 0.9rem;
            font-weight: 400;
            margin-left: 0.8rem;
        }

        .neumorphic-input-wrapper input {
            border: none;
            outline: none;
            background: none;
            background-color: #e0e0e0;
            padding: 0.8rem 1.1rem;
            border-radius: 20px;
            margin: 0.5rem 0 1rem 0;
            font-size: 1.2rem;
            color: #0dafeb;;
            box-shadow:
                inset 5px 5px 11px rgba(0, 0, 0, 0.2),
                inset -5px -5px 11px rgba(255, 255, 255, 0.75);
        }

        .neumorphic-form button {
            border: none;
            outline: none;
            background: none;
            width: 100%;
            margin: 0.6rem 0 1rem 0;
            cursor: pointer;
            font-size: 1.2rem;
            color: #0dafeb;
            text-transform: capitalize;
            padding: 0.9rem;
            border-radius: 20px;
            background-color: #405370;
            box-shadow:
                10px 10px 22px rgba(0, 0, 0, 0.2),
                -10px -10px 22px rgba(255, 255, 255, 0.75);
        }

        .neumorphic-form button:active {
            box-shadow:
                inset 5px 5px 11px rgba(0, 0, 0, 0.2),
                inset -5px -5px 11px rgba(255, 255, 255, 0.75);
        }

        .neumorphic-card__footer p {
            text-align: center;
            font-size: 0.9rem;
            margin: 0;
        }

        .neumorphic-card__footer a {
            text-decoration: none;
            color: rgb(216, 30, 30);
        }

        .neumorphic-card__footer a:hover {
            text-decoration: underline;
        }