body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            justify-content: space-between;
        }

        .header {
            display: flex;
            justify-content: flex-start;
            padding: 20px;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .main-content {
            flex: 1;
            padding: 0 20px;
            text-align: center;
        }

        h1 {
            font-size: 24px;
            margin-bottom: 40px;
        }

        .input-group {
            display: flex;
            align-items: center;
            background: #f6f6f6;
            border-radius: 30px;
            padding: 10px 20px;
            margin-bottom: 20px;
        }

        .input-group select,
        .input-group input {
            background: none;
            border: none;
            outline: none;
            flex: 1;
            font-size: 16px;
        }

        .input-group select {
            appearance: none;
            -webkit-appearance: none;
        }

        .input-group .icon {
            margin-left: 10px;
            color: #c5c5c5;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }

        .checkbox-group input {
            margin-right: 10px;
        }

        .checkbox-group label {
            font-size: 14px;
        }

        .checkbox-group a {
            color: #2D8CF0;
            text-decoration: none;
        }

        .login-button {
            background: #FFF7A2;
            color: #C5C09B;
            border: none;
            border-radius: 30px;
            padding: 12px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
        }

        .verification-login {
            margin-top: 20px;
            font-size: 14px;
        }

        .footer {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 20px;
        }

        .footer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }