
/*
login css
*/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f3f0ff;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }

        .background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 20px;
        }

        .form-container {
            /*
            width: 350px;
            height: 450px;
            background: white;
            padding: 2rem;
            border-radius: 60px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            z-index: 1;
            margin-left: 80%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 4rem;
            margin-top: 0.7rem;
*/
            margin-bottom: 1rem;
            margin-top: -10px;
            margin-right: 5rem;
            font-size: 10px;
            background: rgb(255, 255, 255);
            padding: 20px;
            border-radius: 60px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
        }

        .form-container:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
            border: 1px solid #aaa;
        }

        .img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 0.3rem;
        }

        .logo {
            margin-bottom: 2rem;
            text-align: center;
        }

        .logo h2 {
            color: #b027cc;
            text-align: left;
            width: 80%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .logo p {
            text-align: left;
            width: 80%;
            margin-top: 10px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .p {
            color: #b027cc;
            text-align: center;
            margin-top: -2rem;
            text-decoration: none;
        }

        .form-group p {
            color: #b027cc;
            margin-top: -5px;
            max-width: 400px;
            text-align: left;
            margin-left: auto;
            margin-right: auto;
            font-weight: bold;
        }

        a {
            text-decoration: none;
        }

        form {
            margin-top: 1rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .form-group {
            margin-bottom: 1rem;
            width: 80%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .form-group {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .form-group label {
            grid-column: 1;
        }

        .form-group input[type="tel"],
        .form-group input[type="password"] {
            grid-column: 1;
        }

        label {
            display: block;
            width: 100%;
            max-width: 100%;
            margin-bottom: -5px;
            color: #000000;
            text-align: left;
            font-weight: bold;
        }

        input {
            width: 100%;
            max-width: 100%;
            padding: 0.5rem 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        input::placeholder {
            font-size: 10px;
        }


        .button {
            width: 70%;
            padding: 0.7rem 1rem;
            border: none;
            background-color: #ff0000;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            margin-top: 0.1rem;
            margin-bottom: 3rem;
        }

        .button:hover {
            background-color: #ff0000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
        }

        footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: white;
            padding: 10px 0;
            text-align: center;
            transition: background-color 0.3s;
        }

        .fs-small {
            color: #000;
            font-size: 10px;
        }

        @media only screen and (max-width: 1024px) {
            .form-container {
                width: 350px;
                margin-left: auto;
                margin-right: auto;
                transform: translateX(0%);
                font-size: 10px;
            }

            input {
                width: calc(100% - 20px);
                padding: 8px;
                font-size: 10px;
            }
        }

        @media only screen and (max-width: 768px) {
            .form-container {
                width: 350px;
                height: 450px;
                margin-left: auto;
                margin-right: auto;
                transform: translateX(0%);
                font-size: 10px;
            }

            input {
                width: calc(100% - 20px);
                padding: 8px;
                font-size: 10px;
            }
        }

        @media only screen and (max-width: 480px) {
            .form-container {
                width: 350px;
                height: 450px;
                margin-left: auto;
                margin-right: auto;
                transform: translateX(0%);
                font-size: 10px;
            }

            input {
                width: calc(100% - 20px);
                padding: 8px;
                font-size: 10px;
            }
        }

        @media screen and (max-width: 100vw) {
            .form-container {
                width: 350px !important;
            }
        }
        