* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }
        body {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            background-color: #ffffff;
            padding: 5%;
        }
        .wrapper {
            width: 80%;
            max-width: 400px;
            background: transparent;
            border: none;
            color: #000;
            border-radius: 12px;
            padding: 3%;
            position: relative;
        }
        .title-message h1 {
            color: #000;
            font-size: 2.5vw;
            text-align: center;
        }
        .wrapper h1 {
            font-size: 2vw;
            text-align: center;
            margin-bottom: 5%;
        }
        .input-box {
            position: relative;
            width: 100%;
            height: 3vw;
            margin: 3% 0;
        }
        .input-box input {
            width: 100%;
            height: 100%;
            background: #f5f5f5;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1.4vw;
            color: #000;
            padding: 0 12%;
        }
        .input-box i {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8vw;
            color: #000;
        }
        .btn {
            width: 100%;
            height: 3vw;
            background: #cc6b45;
            border: none;
            outline: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 2vw;
            color: #fff;
            font-weight: 600;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .error-message {
            color: red;
            font-size: 1.2rem;
            font-weight: bold;
            margin: 10px 0;
            text-align: center;
        }