@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
            background: #e5f0ff;
        }
        h2{
            color: #006fff;
            font-size: 16px;
            font-weight: 700;
        }

        .container {
            position: relative;
            max-width: 900px;
            width: 100%;
            border-radius: 6px;
            padding: 30px;
            margin: 0 15px;
            background: #fff;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .checkbox-label input {
            width: auto;
            margin-right: 10px;
        }

        button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        button:hover:enabled {
            background: #218838;
        }

        button {
            margin-top: 15px;
            padding: 10px;
            border: none;
            border-radius: 4px;
            background: #28a745;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        label{
            font-size: 0.8rem;
        }
        a{
            text-decoration: none;
        }
        .error-message {
            margin-top: 5px;
            font-size: 0.8rem;
          }