 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: Arial, sans-serif;
            background: white;
            color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            width: 90%;
            max-width: 400px;
            text-align: center;
            position: relative;
        }
        h1 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        .bold, .fw-bold {
            font-weight: 800;
        }
        .underline, .text-decoration-underline {
            text-decoration: underline;
            text-decoration-color: #0351AE;
        }
        .avatar-upload {
            width: 80px;
            height: 80px;
            border: 2px dashed #0351AE;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .camera-icon {
            font-size: 24px;
            color: #0351AE;
        }
        .form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .input {
            background-color: #f5f5f5;
            border: none;
            padding: 15px;
            border-radius: 25px;
            font-size: 16px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .input input {
            border: none;
            background: none;
            flex: 1;
            font-size: 16px;
            outline: none;
        }
        .done-btn {
            background-color: #0351AE;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
        }
        .done-btn:hover {
            background-color: #003b8a;
        }
        .cancel-btn {
            background: none;
            border: none;
            color: #444;
            font-size: 14px;
            margin-top: 5px;
            cursor: pointer;
        }
        .cancel-btn:hover {
            color: #0351AE;
            text-decoration: underline;
        }
        .error-message {
            color: #ff0000;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .error {
            color: #ff0000;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .success {
            color: #28a745;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .otp-inputs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
        }
        .otp-inputs input {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            border: none;
            background-color: #f2f2f2;
            text-align: center;
            font-size: 24px;
            outline: none;
        }
        .otp-inputs input:focus {
            box-shadow: 0 0 5px rgba(3, 81, 174, 0.5);
        }
        .toggle-password {
            cursor: pointer;
        }
        .top-bg {
            background-color: #0351AE;
            width: 90%;
            height: 30%;
            position: absolute;
            top: -20%;
            left: -10%;
            border-bottom-right-radius: 50%;
            z-index: -1;
        }