        body {
            margin: 0;
            font-family: 'Poppins';
        }

        /* BACKGROUND */
        .hero {
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') no-repeat center/cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* COMPANY NAME */
        .title {
            position: absolute;
            top: 20px;
            font-size: 32px;
            font-weight: bold;
            color: white;
            letter-spacing: 2px;
        }

        /* FORM CONTAINER */
        .form-container {
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            width: 320px;
        }

        /* INPUTS */
        .form-container input {
            width: 100%;
            margin-bottom: 12px;
            padding: 10px;

            border: none;
            border-radius: 6px;

            font-size: 14px;
        }

        /* BUTTON */
        .form-container button {
            width: 100%;
            padding: 10px;

            border: none;
            border-radius: 6px;

            background: #0072ff;
            color: white;
            font-size: 15px;

            cursor: pointer;
        }

        .form-container button:hover {
            background: #005edb;
        }